summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2021-07-14 12:45:00 +1200
committerDavid Rowley <drowley@postgresql.org>2021-07-14 12:45:00 +1200
commit47ca4836441d1c24f75a94d43af8bd72d4c8d057 (patch)
treec04f184de05c3439eb2579fd6e4f27bebbd6402e /doc/src
parent6201fa3c166fe2383dd44a9dd5082bc748c2937a (diff)
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
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/config.sgml8
-rw-r--r--doc/src/sgml/release-14.sgml2
2 files changed, 5 insertions, 5 deletions
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 <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
</listitem>
</varlistentry>
- <varlistentry id="guc-enable-resultcache" xreflabel="enable_resultcache">
- <term><varname>enable_resultcache</varname> (<type>boolean</type>)
+ <varlistentry id="guc-enable-memoize" xreflabel="enable_memoize">
+ <term><varname>enable_memoize</varname> (<type>boolean</type>)
<indexterm>
- <primary><varname>enable_resultcache</varname> configuration parameter</primary>
+ <primary><varname>enable_memoize</varname> configuration parameter</primary>
</indexterm>
</term>
<listitem>
<para>
- 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 <drowley@postgresql.org>
<para>
This is useful if only a small percentage of rows is checked on
the inner side and is controlled by <xref
- linkend="guc-enable-resultcache"/>.
+ linkend="guc-enable-memoize"/>.
</para>
</listitem>