Fixed reference to "fallbackToNoOpCache" flag

Issue: SPR-9064
master
Juergen Hoeller 12 years ago
parent cd2183f9e1
commit 13cf1fceaa
  1. 4
      src/reference/docbook/cache.xml

@ -570,10 +570,10 @@ public Book findBook(ISBN isbn, boolean checkWarehouse, boolean includeUsed)]]><
<ref bean="jdkCache"/> <ref bean="jdkCache"/>
<ref bean="gemfireCache"/> <ref bean="gemfireCache"/>
</list></property> </list></property>
<property name="addNoOpCache" value="true"/> <property name="fallbackToNoOpCache" value="true"/>
</bean>]]></programlisting> </bean>]]></programlisting>
<para>The <literal>CompositeCacheManager</literal> above chains multiple <literal>CacheManager</literal>s and additionally, through the <literal>addNoOpManager</literal> flag, adds a <para>The <literal>CompositeCacheManager</literal> above chains multiple <literal>CacheManager</literal>s and additionally, through the <literal>fallbackToNoOpCache</literal> flag, adds a
<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> <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>
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. 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.
</para> </para>

Loading…
Cancel
Save