PostgreSQL 14 pg_prepared_statements 新增统计软/硬解析次数

栏目: 软件资讯 · 发布时间: 3年前

内容简介:PostgreSQL 中 prepare statement 可以用来 cache plan,用来减少 plan 的次数。 默认是前 5 次调用生成 custom plan,然后生成 generic plan。 PG14 中在 pg_prepared_statements 视图中新增了 generic_plans 和...

PostgreSQL 中 prepare statement 可以用来 cache plan,用来减少 plan 的次数。

默认是前 5 次调用生成 custom plan,然后生成 generic plan。

PostgreSQL 14 pg_prepared_statements 新增统计软/硬解析次数

PG14 中在 pg_prepared_statements 视图中新增了 generic_plans 和 custom_plans 两列,用来统计 generic plan 和 custom plan 的次数。

bill@bill=>PREPARE pr1 AS SELECT * FROM pg_class WHERE
bill-# relname = $1;
PREPARE
bill@bill=>EXECUTE  pr1('t1');
bill@bill=>select * from pg_prepared_statements;
 name |                    statement                     |         prepare_time          | parameter_types | from_sql | generic_plans | custom_plans
------+--------------------------------------------------+-------------------------------+-----------------+----------+---------------+--------------
 pr1  | PREPARE pr1 AS SELECT * FROM pg_class WHERE     +| 2021-05-13 10:17:28.429238+08 | {name}          | t        |             0 |            1
      | relname = $1;                                    |                               |                 |          |               |
(1 row)

执行多次后再查看:

bill@bill=>select * from pg_prepared_statements;
-[ RECORD 1 ]---+-------------------------------------------------
name            | pr1
statement       | PREPARE pr1 AS SELECT * FROM pg_class WHERE     +
                | relname = $1;
prepare_time    | 2021-05-13 10:17:28.429238+08
parameter_types | {name}
from_sql        | t
generic_plans   | 2
custom_plans    | 5

 


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Introduction to the Design and Analysis of Algorithms

Introduction to the Design and Analysis of Algorithms

Anany Levitin / Addison Wesley / 2006-2-24 / USD 122.00

Based on a Based on a new classification of algorithm design techniques and a clear delineation of analysis methods, "Introduction to the Design and Analysis of Algorithms" presents the subject in a c......一起来看看 《Introduction to the Design and Analysis of Algorithms》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具