
PostgreSQL
文章平均质量分 55
app_goal
这个作者很懒,什么都没留下…
展开
-
PG长短连接-性能测试
PG短连接对系统性能有很大影响。# test.sqlselect 1;[postgres@master ~]$ pgbench -M extended -n -r -f ./test.sql -c 16 -j 4 -C -T 30transaction type: ./test.sqlscaling factor: 1query mode: extendednumber of clients: 16number of threads: 4duration: 30 s...原创 2021-11-14 21:26:13 · 923 阅读 · 0 评论 -
/proc/sys/vm/drop_caches用途
In order to speed up operations and reduce disk I/O, the kernel usually does as much caching as it has memory. By design, pages containing cached data can be repurposed on-demand for other uses (e.g., apps). Repurposing memory for use in this way is no...原创 2021-11-14 18:20:42 · 5458 阅读 · 0 评论 -
PG执行计划,成本计算
postgres=# \h explainCommand: EXPLAINDescription: show the execution plan of a statementSyntax:EXPLAIN [ ( option [, ...] ) ] statementEXPLAIN [ ANALYZE ] [ VERBOSE ] statementwhere option can be one of: ANALYZE [ boolean ] ## 此参数默认为关闭,当...原创 2021-11-14 11:07:49 · 925 阅读 · 0 评论