标签:style 使用 ar 数据 sp c on r line
mysql> SHOW VARIABLES LIKE ‘%query_cache%‘; +------------------------------+---------+ | Variable_name | Value | +------------------------------+---------+ | have_query_cache | YES | --服务器是否配置高速缓存 | query_cache_limit | 1048576 | --限制缓存单个查询结果的大小,默认1M | query_cache_min_res_unit | 4096 | --分配缓存时的最小块大小,默认4KB | query_cache_size | 1048576 | --缓存区大小,根据不同的系统会有一个最小缓存区大小 | query_cache_type | OFF | --0,关闭缓存, 1打开缓存, 2请求时使用缓存(使用SELECT SQL_CACHE) | query_cache_wlock_invalidate | OFF | --对于MyISAM表,在获取到写锁后,是否失效其他连接读缓存的请求 +------------------------------+---------+
mysql> SHOW STATUS LIKE ‘%Qcache%‘; +-------------------------+---------+ | Variable_name | Value | +-------------------------+---------+ | Qcache_free_blocks | 1 | --查询缓存中空闲的内存块 | Qcache_free_memory | 1031336 | --查询缓存的空闲内存数 | Qcache_hits | 0 | --缓存采样数数目 | Qcache_inserts | 0 | --被加入到缓存中的查询数目 | Qcache_lowmem_prunes | 0 | --因缺少缓存而被删除的查询数目 | Qcache_not_cached | 1 | --没有被缓存的查询数目(不能被缓存的,或由于QUERY_CACHE_TYPE) | Qcache_queries_in_cache | 0 | --在缓存中已注册的查询数目 | Qcache_total_blocks | 1 | --查询缓存中的块的总数目 +-------------------------+---------+
不吝指正。
标签:style 使用 ar 数据 sp c on r line
原文地址:http://my.oschina.net/indestiny/blog/323774