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 -

java - where to store the user credentials in an enterprise application(EAI)? -

openxml - Programmatically format a date in an excel sheet using Office Open Xml SDK -