[hibernate-commits] Hibernate SVN: r13927 - in core/trunk/documentation/manual: pt-BR/src/main/docbook/modules and 1 other directory.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Aug 16 08:46:28 EDT 2007


Author: d.plentz
Date: 2007-08-16 08:46:28 -0400 (Thu, 16 Aug 2007)
New Revision: 13927

Modified:
   core/trunk/documentation/manual/en-US/src/main/docbook/modules/performance.xml
   core/trunk/documentation/manual/pt-BR/src/main/docbook/modules/performance.xml
Log:
[HHH-2156] Section 19.3, "Managing the caches" doesn't document CacheMode.IGNORE

Modified: core/trunk/documentation/manual/en-US/src/main/docbook/modules/performance.xml
===================================================================
--- core/trunk/documentation/manual/en-US/src/main/docbook/modules/performance.xml	2007-08-16 08:13:46 UTC (rev 13926)
+++ core/trunk/documentation/manual/en-US/src/main/docbook/modules/performance.xml	2007-08-16 12:46:28 UTC (rev 13927)
@@ -949,6 +949,12 @@
         </listitem>
         <listitem>
         <para>
+            <literal>CacheMode.IGNORE</literal> - never write nor read items from the second-level cache, 
+            except when updating data.
+        </para>
+        </listitem>
+        <listitem>
+        <para>
             <literal>CacheMode.GET</literal> - read items from the second-level cache, but don't write to
             the second-level cache except when updating data
         </para>

Modified: core/trunk/documentation/manual/pt-BR/src/main/docbook/modules/performance.xml
===================================================================
--- core/trunk/documentation/manual/pt-BR/src/main/docbook/modules/performance.xml	2007-08-16 08:13:46 UTC (rev 13926)
+++ core/trunk/documentation/manual/pt-BR/src/main/docbook/modules/performance.xml	2007-08-16 12:46:28 UTC (rev 13927)
@@ -1,4 +1,4 @@
-<chapter id="performance">
+<chapter id="performance">
     <title>Aumentando a performance</title>
 
     <sect1 id="performance-fetching" revision="2">
@@ -940,26 +940,32 @@
         <itemizedlist>
         <listitem>
         <para>
-            <literal>CacheMode.NORMAL</literal> - read items from and write items to the second-level cache
+            <literal>CacheMode.NORMAL</literal> - read items from and write items to the second-level cache.
         </para>
         </listitem>
         <listitem>
         <para>
+            <literal>CacheMode.IGNORE</literal> - never write nor read items from the second-level cache, 
+            except when updating data.
+        </para>
+        </listitem>
+        <listitem>
+        <para>
             <literal>CacheMode.GET</literal> - read items from the second-level cache, but don't write to
-            the second-level cache except when updating data
+            the second-level cache except when updating data.
         </para>
         </listitem>
         <listitem>
         <para>
             <literal>CacheMode.PUT</literal> - write items to the second-level cache, but don't read from
-            the second-level cache
+            the second-level cache.
         </para>
         </listitem>
         <listitem>
         <para>
             <literal>CacheMode.REFRESH</literal> - write items to the second-level cache, but don't read from
             the second-level cache, bypass the effect of <literal>hibernate.cache.use_minimal_puts</literal>, forcing
-            a refresh of the second-level cache for all items read from the database
+            a refresh of the second-level cache for all items read from the database.
         </para>
         </listitem>
         </itemizedlist>




More information about the hibernate-commits mailing list