<?xml version="1.0"?>

<!-- DeclarativeCache.xml
     Configures a GemFire cache. This file will be modified by the user
     for the declarative caching example. 
-->

<!DOCTYPE cache PUBLIC
  "-//GemStone Systems, Inc.//GemFire Declarative Caching 5.7//EN"
  "http://www.gemstone.com/dtd/cache5_7.dtd">
<cache>
  <region name="root">
    <region-attributes/>
    <region name="exampleRegion">
      <region-attributes statistics-enabled="true">
      </region-attributes>
      <entry> 
        <key><string>KEY1</string></key>
        <value><string>VALUE1</string></value>
      </entry>
      <entry>
        <key><string>KEY2</string></key>
        <value><string>VALUE2</string></value>
      </entry>
      <region name="exampleSubregion1">
        <region-attributes scope="distributed-ack" 
                           data-policy="replicate"
                           early-ack="true">
        </region-attributes>
      </region>           
    </region>           
  </region>
</cache>
