Extension point configuration
In component org.nuxeo.runtime.kv.KeyValueService
Documentation
Defines the implementations of the Key/Value stores:
<store class="org.nuxeo.runtime.kv.MemKeyValueStore" name="default"/>
The class must implement org.nuxeo.runtime.kv.KeyValueStoreProvider.
Contribution Descriptors
Existing Contributions
Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.
-
<extension point="configuration" target="org.nuxeo.runtime.kv.KeyValueService"> <store class="org.nuxeo.runtime.kv.MemKeyValueStore" name="default"> </store> </extension>
-
<extension point="configuration" target="org.nuxeo.runtime.kv.KeyValueService"> <store class="org.nuxeo.ecm.core.storage.sql.kv.SQLKeyValueStore" name="default"> <property name="datasource">jdbc/keyvaluestore</property> <property name="table">kv</property> </store> </extension>