Apache 点燃缓存过期
Apache ignite cache expiry
我在我的 python 项目中使用 Apache Ignite。我正在使用 'pyignite' 客户端建立连接。
我需要为缓存设置一些到期时间。另外,需要为apache ignite 配置系统资源。如果有人知道配置帮助我。
启动服务器节点时,您可以在 Ignite XML configuration 中设置到期时间:
<bean class="org.apache.ignite.configuration.CacheConfiguration">
...
<property name="expiryPolicyFactory">
<bean class="javax.cache.expiry.CreatedExpiryPolicy" factory-method="factoryOf">
<constructor-arg>
<bean class="javax.cache.expiry.Duration">
<constructor-arg value="MINUTES"/>
<constructor-arg value="5"/>
</bean>
</constructor-arg>
</bean>
</property>
</bean>
系统资源通过调整data region size and thread pools size配置。
我在我的 python 项目中使用 Apache Ignite。我正在使用 'pyignite' 客户端建立连接。 我需要为缓存设置一些到期时间。另外,需要为apache ignite 配置系统资源。如果有人知道配置帮助我。
启动服务器节点时,您可以在 Ignite XML configuration 中设置到期时间:
<bean class="org.apache.ignite.configuration.CacheConfiguration">
...
<property name="expiryPolicyFactory">
<bean class="javax.cache.expiry.CreatedExpiryPolicy" factory-method="factoryOf">
<constructor-arg>
<bean class="javax.cache.expiry.Duration">
<constructor-arg value="MINUTES"/>
<constructor-arg value="5"/>
</bean>
</constructor-arg>
</bean>
</property>
</bean>
系统资源通过调整data region size and thread pools size配置。