Cache hit ratio

From wikieduonline
Revision as of 09:19, 5 August 2021 by Welcome (talk | contribs)
Jump to navigation Jump to search


SELECT 
  sum(heap_blks_read) as heap_read,
  sum(heap_blks_hit)  as heap_hit,
  sum(heap_blks_hit) / (sum(heap_blks_hit) + sum(heap_blks_read)) as ratio
FROM 
  pg_statio_user_tables;


See also

Advertising: