内容简介:MySQL 總算要拔掉 mysql_query_cache 了
半官方的 MySQL blog 上宣佈了拔掉 mysql_query_cache
的計畫:「 MySQL 8.0: Retiring Support for the Query Cache 」。
作者開頭引用了 ProxySQL 的人對 MySQL Query Cache 的說明:
Although MySQL Query Cache was meant to improve performance, it has serious scalability issues and it can easily become a severe bottleneck.
主要問題在於 MySQL Query Cache 在多 CPU 環境下很難 scale,很容易造成一堆 thread 在搶 lock。而且作者也同意 ProxySQL 的說法,將 cache 放到 client 的效能比較好:
We also agree with Rene’s conclusion, that caching provides the greatest benefit when it is moved closer to the client:
可以看到 Query Cache 在複雜的環境下對效能極傷。而之前也提到過類似的事情了:「 Percona 對 mysql_query_cache 的測試 (以 Magento 為例) 」、「 關閉 MySQL 的 Query Cache 」。
一般如果要 cache 的話,透過 InnoDB 裡良好的 index 應該還可以撐不少量起來。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Haskell Programming from first principles
Christopher Allen、Julie Moronuki / 2015 / USD 59.00
I am writing this book because I had a hard time learning Haskell. It doesn't have to be that way. I've spent the last couple years actively teaching Haskell online and in person. Along the way, I ......一起来看看 《Haskell Programming from first principles》 这本书的介绍吧!