如何使用 apache geode 9.0.3 通过 xml 配置将区域声明为堆外
我的 xml 配置在 server-cache.xml 中。
<!DOCTYPE cache PUBLIC
"-//GemStone Systems, Inc.//GemFire Declarative Caching 8.0//EN"
"http://www.gemstone.com/dtd/cache8_0.dtd">
<cache>
<region name="regionA">
<region-attributes off-heap="true"/>
<region-attributes data-policy="partition"/>
</region>
</cache>
我收到这个错误
org.apache.geode.cache.CacheXmlException: While reading Cache XML file:/server-cache.xml. Error while parsing XML, caused by org.xml.sax.SAXParseException; lineNumber: 14; columnNumber: 43; Attribute "off-heap" must be declared for element type "region-attributes".
我读了这个
通过将堆外区域属性设置为 true 来标记其条目值应在堆外存储的区域 为托管同一区域的所有数据的所有成员统一配置其他区域属性。
来自 http://gemfire.docs.pivotal.io/geode/managing/heap_use/off_heap_management.html