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

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -