MySQL的內存表的侷限性

Although Memory tables are very fast, they often don’t work well as a general-
purpose replacement for disk-based tables. They use table-level locking, which gives
low write concurrency, and they do not support TEXT or BLOB column types. They
also support only fixed-size rows, so they really store VARCHARsas CHARs, which can
waste memory.

《High Performance MySQL》 Page 44

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章