如何使websphere中的缓存条目不过期

发布于 2024-11-17 11:33:50 字数 93 浏览 3 评论 0原文

我在网络领域创建了一个缓存,该缓存将由多个应用程序共享,并且我想在创建的缓存中创建一个条目以免过期。我怎样才能做到呢?

谢谢和问候,

阳光。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清君侧 2024-11-24 11:33:50

您是否派生/使用 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's DistributedMap 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 a setTimeToLive(int) method in DistributedMap

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()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文