Code: Select all
SHOW STATUS LIKE 'Qcache%';in phpmyadmin and it works but shows values as being a Blob so how can I get the result on a php page?
Moderator: General Moderators
Code: Select all
SHOW STATUS LIKE 'Qcache%';Code: Select all
Variable_name Value
Qcache_free_blocks 0
Qcache_free_memory 0
Qcache_hits 0
Qcache_inserts 0
Qcache_lowmem_prunes 0
Qcache_not_cached 0
Qcache_queries_in_cache 0
Qcache_total_blocks 0Code: Select all
while ($row = mysql_fetch_row($result)){
echo $row[0]."--".$row[1];
}