You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by Apache Wiki <wi...@apache.org> on 2008/08/13 20:03:58 UTC

[Jackrabbit Wiki] Update of "DataStore" by ThomasMueller

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Jackrabbit Wiki" for change notification.

The following page has been changed by ThomasMueller:
http://wiki.apache.org/jackrabbit/DataStore

The comment on the change is:
maxConnections >= 3

------------------------------------------------------------------------------
          <param name="databaseType" value="postgresql"/>
          <param name="driver" value="org.postgresql.Driver"/>
          <param name="minRecordLength" value="1024"/>
-         <param name="maxConnections" value="2"/>
+         <param name="maxConnections" value="3"/>
          <param name="copyWhenReading" value="true"/>
          <param name="tablePrefix" value=""/>
      </DataStore>
  }}}
  
  There is a limitation on the minRecordLength: the maximum value is around 32000. The reason for this is that Java doesn't support strings longer than 64 KB in writeUTF.
+ 
+ maxConnections: At least 3 connections are required if the garbage collection process is used.
  
  == FAQ ==