MySQL 資料儲存的型態, 最常見的就是 MyISAM(預設), InnoDB 和 Heap(Memory base).
那到底 哪種資料 應該使用 哪種資料型態?
這篇文章有詳細的說明: MySQL Storage Engines, 在此轉載此文的圖片, 此圖片的說明就已經蠻清楚了:
作者有寫一些情況的使用時機範例, 有興趣的可以參考看看:
- Search Engine - NDBCluster
- Web stats logging - Flat file for the logging with an offline processing demon processing and writing all stats into InnoDB tables.
- Financial Transactions - InnoDB
- Session data - MyISAM or NDBCluster
- Localized calculations - HEAP
- Dictionary - MyISAM
其它參考網頁: