From 47ca4836441d1c24f75a94d43af8bd72d4c8d057 Mon Sep 17 00:00:00 2001 From: David Rowley Date: Wed, 14 Jul 2021 12:45:00 +1200 Subject: Change the name of the Result Cache node to Memoize "Result Cache" was never a great name for this node, but nobody managed to come up with another name that anyone liked enough. That was until David Johnston mentioned "Node Memoization", which Tom Lane revised to just "Memoize". People seem to like "Memoize", so let's do the rename. Reviewed-by: Justin Pryzby Discussion: https://postgr.es/m/20210708165145.GG1176@momjian.us Backpatch-through: 14, where Result Cache was introduced --- doc/src/sgml/config.sgml | 8 ++++---- doc/src/sgml/release-14.sgml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index bfef56623b1..f26de8909b5 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -5014,15 +5014,15 @@ ANY num_sync ( - enable_resultcache (boolean) + + enable_memoize (boolean) - enable_resultcache configuration parameter + enable_memoize configuration parameter - Enables or disables the query planner's use of result cache plans for + Enables or disables the query planner's use of memoize plans for caching results from parameterized scans inside nested-loop joins. This plan type allows scans to the underlying plans to be skipped when the results for the current parameters are already in the cache. Less diff --git a/doc/src/sgml/release-14.sgml b/doc/src/sgml/release-14.sgml index e18d2318ecd..fd1d5bfd430 100644 --- a/doc/src/sgml/release-14.sgml +++ b/doc/src/sgml/release-14.sgml @@ -1191,7 +1191,7 @@ Author: David Rowley This is useful if only a small percentage of rows is checked on the inner side and is controlled by . + linkend="guc-enable-memoize"/>. -- cgit v1.2.3