我在python项目中使用Apache Ignite。我正在使用“ pyignite”客户端进行连接。 我需要为缓存设置一些到期时间。另外,需要为apache点燃配置系统资源。如果有人知道配置帮助我。
答案 0 :(得分:2)
启动服务器节点时,您可以在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和thread pools size来配置系统资源。