[hibernate-commits] Hibernate SVN: r14104 - search/trunk/doc/reference/en/modules.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Oct 18 22:14:44 EDT 2007


Author: epbernard
Date: 2007-10-18 22:14:44 -0400 (Thu, 18 Oct 2007)
New Revision: 14104

Modified:
   search/trunk/doc/reference/en/modules/configuration.xml
Log:
HSEARCH-127 type and wrong property names

Modified: search/trunk/doc/reference/en/modules/configuration.xml
===================================================================
--- search/trunk/doc/reference/en/modules/configuration.xml	2007-10-18 22:31:39 UTC (rev 14103)
+++ search/trunk/doc/reference/en/modules/configuration.xml	2007-10-19 02:14:44 UTC (rev 14104)
@@ -253,7 +253,7 @@
           </row>
 
           <row>
-            <entry><literal>org.hibernate.worker.backend</literal></entry>
+            <entry><literal>hibernate.worker.backend</literal></entry>
 
             <entry>Out of the box support for the Apache Lucene back end and
             the JMS back end. Default to <literal>lucene</literal>. Supports
@@ -261,7 +261,7 @@
           </row>
 
           <row>
-            <entry><literal>org.hibernate.worker.execution</literal></entry>
+            <entry><literal>hibernate.worker.execution</literal></entry>
 
             <entry>Supports synchronous and asynchrounous execution. Default
             to <literal><literal>sync</literal></literal>. Supports also
@@ -269,14 +269,14 @@
           </row>
 
           <row>
-            <entry><literal>org.hibernate.worker.thread_pool.size</literal></entry>
+            <entry><literal>hibernate.worker.thread_pool.size</literal></entry>
 
             <entry>Defines the number of threads in the pool. useful only for
             asynchrounous execution. Default to 1.</entry>
           </row>
 
           <row>
-            <entry><literal>org.hibernate.worker.buffer_queue.max</literal></entry>
+            <entry><literal>hibernate.worker.buffer_queue.max</literal></entry>
 
             <entry>Defines the maximal number of work queue if the thread poll
             is starved. Useful only for asynchrounous execution. Default to
@@ -285,7 +285,7 @@
           </row>
 
           <row>
-            <entry><literal>org.hibernate.worker.jndi.*</literal></entry>
+            <entry><literal>hibernate.worker.jndi.*</literal></entry>
 
             <entry>Defines the JNDI properties to initiate the InitialContext
             (if needed). JNDI is only used by the JMS back end.</entry>
@@ -293,7 +293,7 @@
 
           <row>
             <entry><literal>
-            org.hibernate.worker.jms.connection_factory</literal></entry>
+            hibernate.worker.jms.connection_factory</literal></entry>
 
             <entry>Mandatory for the JMS back end. Defines the JNDI name to
             lookup the JMS connection factory from
@@ -302,7 +302,7 @@
           </row>
 
           <row>
-            <entry><literal> org.hibernate.worker.jms.queue</literal></entry>
+            <entry><literal>hibernate.worker.jms.queue</literal></entry>
 
             <entry>Mandatory for the JMS back end. Defines the JNDI name to
             lookup the JMS queue from. The queue will be used to post work
@@ -310,7 +310,7 @@
           </row>
 
           <row>
-            <entry><literal> org.hibernate.worker.batch_size</literal></entry>
+            <entry><literal>hibernate.worker.batch_size</literal></entry>
 
             <entry>Defines the maximum number of elements indexed before
             flushing the transaction-bound queue. Default to 0 (ie no limit).
@@ -476,13 +476,13 @@
       <programlisting>&lt;hibernate-configuration&gt;
      &lt;session-factory&gt;
         ...
-        &lt;event type="post-update"
+        &lt;event type="post-update"/&gt;
             &lt;listener class="org.hibernate.search.event.FullTextIndexEventListener"/&gt;
         &lt;/event&gt;
-        &lt;event type="post-insert"
+        &lt;event type="post-insert"/&gt;
             &lt;listener class="org.hibernate.search.event.FullTextIndexEventListener"/&gt;
         &lt;/event&gt;
-        &lt;event type="post-delete"
+        &lt;event type="post-delete"/&gt;
             &lt;listener class="org.hibernate.search.event.FullTextIndexEventListener"/&gt;
         &lt;/event&gt;
     &lt;/session-factory&gt;




More information about the hibernate-commits mailing list