zoukankan      html  css  js  c++  java
  • postgres安装pg_buffercache扩展

    1.查看是否安装了pg_buffercache

    postgres=#  dx
                          List of installed extensions
          Name      | Version |   Schema   |           Description           
    ----------------+---------+------------+---------------------------------
     plpgsql        | 1.0     | pg_catalog | PL/pgSQL procedural language
    (1 rows)
    

    2.查看当前服务器是否可以使用pg_buffercache扩展

    postgres=# select * from pg_available_extensions where name='pg_buffercache';
    

    3.安装pg_buffercache扩展

    postgres-# create extension pg_buffercache;
    postgres-# dx
                          List of installed extensions
          Name      | Version |   Schema   |           Description           
    ----------------+---------+------------+---------------------------------
     pg_buffercache | 1.3     | public     | examine the shared buffer cache
     plpgsql        | 1.0     | pg_catalog | PL/pgSQL procedural language
    (2 rows)
    

    4.删除pg_buffercache

    postgres-# drop extension pg_buffercache;
    

      

  • 相关阅读:
    MySQL学习笔记:coalesce
    Oracle学习笔记:decode函数
    MySQL学习笔记:like和regexp的区别
    状态图
    构件图和部署图
    java基础知识(一)
    包图
    活动图
    协作图
    序列图
  • 原文地址:https://www.cnblogs.com/abclife/p/10938005.html
Copyright © 2011-2022 走看看