如何使websphere中的缓存条目不过期
我在网络领域创建了一个缓存,该缓存将由多个应用程序共享,并且我想在创建的缓存中创建一个条目以免过期。我怎样才能做到呢?
谢谢和问候,
阳光。
I have created a cache in the web sphere which will be shared by multiple applications and i wanted to make one entry in the created cache to not to expire. How can i make it ?
Thanks and Regards,
Sunny.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否派生/使用 WebSphere dyna-cache (DistributedObjectCache)?您如何创建缓存实例?
DistributedObjectCache
(通过它的DistributedMap
父级)定义了一个“put”方法重载,该方法重载接受单个缓存条目的 TTL。如果要设置整个缓存的 TTL,则相反,DistributedMap
中有一个setTimeToLive(int)
方法,请参阅http://publib.boulder.ibm.com/infocenter/dmndhelp/v6rxmx/index.jsp?topic=/com.ibm.wsps.602.javadoc.doc/doc/com/ibm/websphere /cache/DistributedMap.html
值得注意的是,TTL 不能作为 cacheinstances.properties(或管理控制台 Resources/Cache实例/对象缓存实例),必须使用
setTimeToLive()
以编程方式设置Are you deriving/using WebSpheres dyna-cache (DistributedObjectCache)? How are you creating your cache instance?
The
DistributedObjectCache
(through it'sDistributedMap
parent) defines a "put" method overload that accepts a TTL for the individual cache entry. If you want to set the TTL for the entire cache, there is conversely asetTimeToLive(int)
method inDistributedMap
see http://publib.boulder.ibm.com/infocenter/dmndhelp/v6rxmx/index.jsp?topic=/com.ibm.wsps.602.javadoc.doc/doc/com/ibm/websphere/cache/DistributedMap.html
Worth noting is that the TTL is not available as a configuration option in the cacheinstances.properties (or the admin console Resources/Cache Instances/Object cache instances), it has to be set programatically using
setTimeToLive()