[
https://issues.redhat.com/browse/ISPN-12141?page=com.atlassian.jira.plugi...
]
Gustavo Lira Silva commented on ISPN-12141:
-------------------------------------------
[~dnaro27] the following code:
{code:java}
<distributed-cache-configuration name="persistent-cache"
xmlns:jdbc="urn:infinispan:config:store:jdbc:{schemaversion}">
<persistence>
<string-keyed-jdbc-store>
<data-source jndi-url="jdbc/datasource"/> (1)
<string-keyed-table drop-on-exit="true"
create-on-start="true"
prefix="TBL">
<id-column name="ID" type="VARCHAR(255)"/>
<data-column name="DATA" type="BINARY"/>
<timestamp-column name="TS" type="BIGINT"/>
<segment-column name="S" type="INT"/>
</string-keyed-table>
</string-keyed-jdbc-store>
</persistence>
</distributed-cache-configuration>
{code}
Should be:
{code:java}
<distributed-cache-configuration name="persistent-cache"
xmlns:jdbc="urn:infinispan:config:store:jdbc:{schemaversion}">
<persistence>
<jdbc:string-keyed-jdbc-store>
<jdbc:data-source jndi-url="jdbc/postgres"/>
<jdbc:string-keyed-table drop-on-exit="true"
create-on-start="true"
prefix="TBL">
<jdbc:id-column name="ID" type="VARCHAR(255)"/>
<jdbc:data-column name="DATA" type="BYTEA"/>
<jdbc:timestamp-column name="TS"
type="BIGINT"/>
<jdbc:segment-column name="S" type="INT"/>
</jdbc:string-keyed-table>
</jdbc:string-keyed-jdbc-store>
</persistence>
</distributed-cache-configuration>
{code}
Docs: Updates from downstream review
------------------------------------
Key: ISPN-12141
URL:
https://issues.redhat.com/browse/ISPN-12141
Project: Infinispan
Issue Type: Enhancement
Components: Documentation
Reporter: Donald Naro
Assignee: Donald Naro
Priority: Major
Need to incorporate several pieces of review feedback from downstream.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)