
xml.DurableClient.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gemfire-examples Show documentation
Show all versions of gemfire-examples Show documentation
TIBCO ComputeDB store based off Pivotal GemFireXD
The newest version!
<?xml version="1.0"?> <!DOCTYPE client-cache PUBLIC "-//GemStone Systems, Inc.//GemFire Declarative Caching 6.5//EN" "http://www.gemstone.com/dtd/cache6_5.dtd"> <!-- | DurableClient.xml | | Configures a region as a client region in a Durable cache. The | region's pool connects to a server listening on port 40404. --> <client-cache> <pool name="client" subscription-enabled="true"> <server host="localhost" port="40404" /> </pool> <region name="exampleRegion"> <region-attributes refid="CACHING_PROXY"> <cache-listener> <class-name>quickstart.DurableClientCacheListener</class-name> </cache-listener> </region-attributes> </region> </client-cache>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy