覆盖 JCS 事件
我在应用程序中使用 Apache JCS 在应用程序启动时缓存常用数据。 但是,如果缓存中的某些数据直到空闲时间才使用,我想从数据库手动重新加载该值。
所以,基本上我想重写 JCS 事件,以便我的 java 程序知道 由于密钥达到空闲时间而从缓存中删除密钥的瞬间。
I am using Apache JCS in our application to cache commonly used data at application start-up. However, if some of the data in cache is not used till its idle time, I want to manually reload that value from database.
So, basically I want to over-ride the JCS events such that my java program is aware of
instants when a key is getting removed from cache, on account of the key reaching its idle time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个抽象类来注册您想要捕获的事件。 这对我捕捉这两个事件很有用。
将此抽象事件处理程序添加到 jcs 工厂定义中,如下所示
Create an abstract class that registers the events your interested in capturing. This works for me to capture the two events.
Add this abstract event handler to the jcs factory definition as follows