开发插件时使用标准 Confluence 缓存
我正在为 Confluence(版本 2.10)开发一个插件。我的插件有一些昂贵的过程,可以从缓存中受益匪浅。我已经用一个简单的 HashMap 作为缓存实现了概念验证。现在我需要放置一个真正的缓存。
我想将我的缓存与标准 Confluence 缓存集成,以便可以使用管理员中的“缓存统计”页面来管理和监控它们。
我尝试查看 Confluence 文档,但找不到任何有关使用 Confluence 缓存的信息。他们只是不接触插件吗?
I am developing a plugin for Confluence (version 2.10). My plugin has some expensive process that would benefit a lot from caching. I have implemented a proof of concept with a simple HashMap as a cache. Now I need to put a real cache in place.
I'd like to integrate my caches with the standard Confluence caches, so they could be managed and monitored with the "Cache Statistics" page in the admin.
I tried looking through the Confluence documentation, but could not find any informations on using Confluence caches. Are they just not exposed to plugins?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我终于找到了文档: http://confluence.atlassian.com/display/ CONFDEV/Confluence+Caching+Architecture
从 Confluence 获取缓存管理器的实例并使用它来创建您自己的缓存非常简单。
I finally found the documentation : http://confluence.atlassian.com/display/CONFDEV/Confluence+Caching+Architecture
It is pretty simple to get an instance of a Cache Manager from Confluence, and use it to create your own cache.