Date: 2004-11-04T11:33:34
Editor: BrianLee <[EMAIL PROTECTED]>
Wiki: Jakarta-Slide Wiki
Page: DefinitionNode
URL: http://wiki.apache.org/jakarta-slide/DefinitionNode
no comment
Change Log:
------------------------------------------------------------------------------
@@ -85,7 +85,7 @@
<contentstore classname="org.apache.slide.store.txfile.TxFileContentStore">
}}}
-"classname" specifies the class that implements the sub-store in question.
+"classname" specifies the class that implements the sub-store in question. This hints
at developers being able to create their own custom store, which is was Slide was
designed for from the beginning. For more information see the CreateNewSlideStore
entry.
The following are sub-store class implementions that are built into Slide -
@@ -155,6 +155,38 @@
<parameter name="compress">false</parameter>
</nodestore>
}}}
+
+{{{
+<parameter name="driver">org.postgresql.Driver</parameter>
+}}}
+
+Put the name of the jdbc driver you want to use here.
+
+{{{
+<parameter name="url">jdbc:postgresql://19.26.54.86:5432/db_name</parameter>
+}}}
+
+The database url varies by database and jdbc driver. Consult the accompanying jdbc
documentation.
+
+{{{
+<parameter name="user">test</parameter>
+<parameter name="password">12345</parameter>
+}}}
+
+A username / password combination that can access the database.
+
+{{{
+<parameter name="dbcpPooling">true</parameter>
+<parameter name="maxPooledConnections">10</parameter>
+}}}
+
+This enables DBCPPooling and specifies the number of connections it can have.
+
+{{{
+<parameter name="compress">false</parameter>
+}}}
+
+I believe if you set this true, Slide will compress (using zip) incomming data and
uncompress outbound data. This is quite useful.
==== Sequence Store ====
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]