Typo3 and Joomla in china

typo3,joomla,drupal,php

 

Notes on Storage Engine

1.The MyISAM Storage Engine

  • Table locks
  • No automated data recovery
  • No transactions
  • Only indexes are cached in memory
  • Compact storage

2.The memory storage Engine

  • Table locks
  • No dynamic rows(no BLOB  and TEXT , even VARCHAR)
  • Hash indexes are the default index type
  • No index statistics
  • Content is lost on restart

3.The InnoDB Storage Engine

  • Transactional
  • Foreign keys
  • Row-level locks
  • Multiversioning
  • Clustering by primary key
  • All indexes contain the primary key columns
  • Optimized caching
  • Unpached indexes
  • Slow data load
  • Blocking AUTO_INCREMENT
  • No cached COUNT(*) value

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>