Feature: new PGPOOL SET CACHE DELETE command.
authorTatsuo Ishii <ishii@postgresql.org>
Mon, 21 Oct 2024 10:17:56 +0000 (19:17 +0900)
committerTatsuo Ishii <ishii@postgresql.org>
Mon, 21 Oct 2024 10:17:56 +0000 (19:17 +0900)
commitc5c1ca6b37fdc0b25b5507abfbdadd40bc2e81a7
treebbe796763f6ea5ac65cb39a561c23c559a0954bb
parentb58a3c6304d31c76416ebf253e69086dadc186bc
Feature: new PGPOOL SET CACHE DELETE command.

The new PGPOOl SET command allows to delete query cache by specifying
the previous query used to create the query cache entry. example usage
is:

PGPOOL SET CACHE DELETE 'SELECT * FROM t1;'

This command is particularly useful for queries that are not
invalidated by the auto cache invalidation feature because the query
does not have any reference to tables.
doc.ja/src/sgml/ref/allfiles.sgml
doc.ja/src/sgml/ref/pgpool_set_cache.sgml [new file with mode: 0644]
doc.ja/src/sgml/reference.sgml
doc/src/sgml/ref/allfiles.sgml
doc/src/sgml/ref/pgpool_set_cache.sgml [new file with mode: 0644]
doc/src/sgml/reference.sgml
src/include/parser/nodes.h
src/include/query_cache/pool_memqcache.h
src/parser/gram.y
src/protocol/pool_proto_modules.c
src/query_cache/pool_memqcache.c