Tag: enable mysql cache

mysql

enable mysql Query cache

How to enable mysql Query cache on linux server? Ans: You need to login to mysql by using root accesss. ========================== root@server#mysql -u root –pPASSWORD mysql> SET GLOBAL query_cache_size = 16777216;              (If you want to set query_cache_size=16 MB) ========================== Then...