Hide Forgot
Title: Custom Cache Store Configuration (Remote Client-Server Mode) Describe the issue: JDG 6.5.1 Administration and Configuration Guide contains the following description. --- 18.9.2. Custom Cache Store Configuration (Remote Client-Server Mode) The following is a sample configuration for a custom cache store in Red Hat JBoss Data Grid's Remote Client-Server mode: Example 18.2. Custom Cache Store Configuration <distributed-cache name="cacheStore" mode="SYNC" segments="20" owners="2" remote-timeout="30000"> <store class="my.package.CustomCacheStore"> <properties> <property name="customStoreProperty" value="10" /> </properties> </store> </distributed-cache> --- According to <JDG_HOME>/docs/schema/jboss-infinispan-core_6_3.xsd, the above example code in Example 18.2 is not correct, so parse error occurs for code using this example. Suggestions for improvement: The correct example code would be like below and the document should be corrected. --- <distributed-cache name="cacheStore" mode="SYNC" segments="20" owners="2" remote-timeout="30000"> <store class="my.package.CustomCacheStore"> <property name="customStoreProperty">10</property> </store> </distributed-cache> --- Additional information:
The example has been updated and published; a link to the document on the customer portal is below: https://access.redhat.com/documentation/en-US/Red_Hat_JBoss_Data_Grid/6.6/html-single/Administration_and_Configuration_Guide/index.html#sect-Custom_Cache_Store_Configuration_Remote_Client-Server_Mode