PostgreSQL 中 prepare statement 可以用来 cache plan,用来减少 plan 的次数。 默认是前 5 次调用生成 custom plan,然后生成 generic plan。 PG14 中在 pg_prepared_statements 视图中新增了 generic_plans 和 custom_plans 两列,用来统计 generic plan 和 custom plan 的次数。 bill@bill=>PREPARE pr1 AS SELECT... PostgreSQL 14 pg_prepared_statements 新增统计软/硬解析次数下载地址