- MySQL 8 for Big Data
- Shabbir Challawala Jaydip Lakhatariya Chintan Mehta Kandarp Patel
- 151字
- 2021-08-20 10:06:10
Important notes about MyISAM tables
MyISAM supports full-text indexing, which can help in complex search operations. Using full-text indexes, we can index data stored in BLOB and TEXT data types. We will have a detailed look at full-text indexing in Chapter 3, Indexing your data for high-performing queries.
Due to low overhead, MyISAM uses a simpler structure, which provides good performance; however, it cannot help much for good performance when there is a need for better concurrency and use cases that don't fit the need for heavy read operations. The most common performance problem of MyISAM is table locking, which can stick your concurrent queued queries as it locks the table for any other operation till the earlier one is not executed.
A MyISAM table doesn't support transactions and foreign keys. It seems that because of these constraints, MySQL 8's system schema tables now use InnoDB tables instead of MyISAM tables.
- 少兒人工智能趣味入門:Scratch 3.0動畫與游戲編程
- Instant Testing with CasperJS
- 復(fù)雜軟件設(shè)計(jì)之道:領(lǐng)域驅(qū)動設(shè)計(jì)全面解析與實(shí)戰(zhàn)
- Servlet/JSP深入詳解
- Visual Basic程序設(shè)計(jì)習(xí)題解答與上機(jī)指導(dǎo)
- Mastering Swift 2
- MATLAB實(shí)用教程
- 小程序,巧運(yùn)營:微信小程序運(yùn)營招式大全
- C語言程序設(shè)計(jì)學(xué)習(xí)指導(dǎo)與習(xí)題解答
- Python時間序列預(yù)測
- Nginx實(shí)戰(zhàn):基于Lua語言的配置、開發(fā)與架構(gòu)詳解
- 區(qū)塊鏈技術(shù)進(jìn)階與實(shí)戰(zhàn)(第2版)
- “笨辦法”學(xué)C語言
- 現(xiàn)代C:概念剖析和編程實(shí)踐
- JBoss AS 7 Development