Skip to content

Commit 13cf1fc

Browse files
committed
Fixed reference to "fallbackToNoOpCache" flag
Issue: SPR-9064
1 parent cd2183f commit 13cf1fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reference/docbook/cache.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -570,10 +570,10 @@ public Book findBook(ISBN isbn, boolean checkWarehouse, boolean includeUsed)]]><
570570
<ref bean="jdkCache"/>
571571
<ref bean="gemfireCache"/>
572572
</list></property>
573-
<property name="addNoOpCache" value="true"/>
573+
<property name="fallbackToNoOpCache" value="true"/>
574574
</bean>]]></programlisting>
575575

576-
<para>The <literal>CompositeCacheManager</literal> above chains multiple <literal>CacheManager</literal>s and additionally, through the <literal>addNoOpManager</literal> flag, adds a
576+
<para>The <literal>CompositeCacheManager</literal> above chains multiple <literal>CacheManager</literal>s and additionally, through the <literal>fallbackToNoOpCache</literal> flag, adds a
577577
<emphasis>no op</emphasis> cache that for all the definitions not handled by the configured cache managers. That is, every cache definition not found in either <literal>jdkCache</literal>
578578
or <literal>gemfireCache</literal> (configured above) will be handled by the no op cache, which will not store any information causing the target method to be executed every time.
579579
</para>

0 commit comments

Comments
 (0)