indexing - How can i check in Postgresql if specific index is loaded to memory? -


is there way check if index loaded memory?

check contrib module pg_buffercache

after installation can use query see if table , index in buffercache:

select     distinct     relname     pg_buffercache         join pg_class using (relfilenode)     relname in('your_tablename','your_index_name');  

Comments

Popular posts from this blog

delphi - TJvHidDeviceController "DevicePath" always showing "\" -

asp.net mvc 3 - Unexpected "foreach" keyword after "@" character -

Disabling Android home button for industry application -