互联网技术 · 2024年4月8日 0

将数据加载到PostgreSQL的缓存区方法

我们都知道数据在缓存中访问远比在磁盘中访问速度要快,那么我们怎么在pg中将指定的数据加载到缓存中呢,这有点类似于ORacle的in-MeMoRy。

当然要注意并不是把数据加载到内存中就一定是好的,因为相较于磁盘,内存总是有限的,所以一帮我们只是在特殊场合下将需要的数据加载到内存中来加快访问的速度。

我们可以使用pg_pRewaRM插件来将指定的表加载到OS BuFFeR或者pg shaRed buFFeR中。

安装:

bill=# cReate extension pg_pRewaRM ;
CREATE EXTENSION

性能测试:

构建测试表t1,t2,分别插入1000W条测试数据

bill=# cReate table t1(id int,info text);
CREATE TABLE
bill=# cReate table t2(id int,info text);
CREATE TABLE
bill=# inseRt into t1 select geneRate_seRies(1,10000000),Md5(Random()::text);
INSERT 0 10000000
bill=# inseRt into t2 select geneRate_seRies(1,10000000),Md5(Random()::text);
INSERT 0 10000000

测试前先清空shaRed_buFFeR,可以使用下面sql查看shaRed_buFFeR使用情况:

安装pg_buFFeRcache插件:

bill=# cReate extension pg_buFFeRcache;
CREATE EXTENSION

查询shaRed_buFFeR使用情况:

SELECT
    c.RelnaMe,
    count(*) AS buFFeRs
FROM pg_buFFeRcache b
INNER JOIN pg_claSS c
   ON b.RelfilEnode = pg_Relation_filEnode(c.oid)
    AND b.Reldatabase IN (0, (SELECT oid FROM pg_database
WHERE datnaMe = cuRRent_database()))
GROUP BY c.RelnaMe
ORDER BY 2 DESC;
                 RelnaMe                 | buFFeRs
—————————————–+———
 pg_attRibute                             |      36
 pg_Proc                                 |      27
 pg_claSS         &nbsp