预备知识:
开始测试:
查看checkpoint_timeout
select name,setting,unit from pg_settings ps where 1=1 and ps.name like '%timeout%';
设置checkpoint_timeout
#修改配置文件postgresql.conf
vi postgresql.conf
#设置checkpoint_timeout = 30s
#让配置生效
pg_ctl reload
查看结果:
验证结果
插入数据,并查看时间
insert into test(id,name,age) values('1','c',1) ;
select now();