公司有个新项目,以OLAP为主,小弟我想在OLAP方面使用myisam存储引擎,不知选择是否正确

公司有个新项目,以OLAP为主,我想在OLAP方面使用myisam存储引擎,不知选择是否正确?
公司有个新项目,以OLAP为主,我想在OLAP方面使用myisam存储引擎,不知选择是否正确?
------解决思路----------------------
建议任何场景都用innodb  

myisam基本已经废弃
------解决思路----------------------
.
引用
MySQL 5.6 Supported storage Engines
• InnoDB: A transaction-safe (ACID compliant) storage engine for MySQL that has commit, rollback,
and crash-recovery capabilities to protect user data. InnoDB row-level locking (without escalation
to coarser granularity locks) and Oracle-style consistent nonlocking reads increase multi-user
concurrency and performance. InnoDB stores user data in clustered indexes to reduce I/O for
common queries based on primary keys. To maintain data integrity, InnoDB also supports FOREIGN
KEY referential-integrity constraints. InnoDB is the default storage engine in MySQL 5.6.
• MyISAM: These tables have a small footprint. Table-level locking limits the performance in read/write
workloads, so it is often used in read-only or read-mostly workloads in Web and data warehousing
configurations.
• Memory: Stores all

------解决思路----------------------
ROLAP采用myisam是一个不错的选择,还可以考虑infinidb开源版。