码迷,mamicode.com
首页 > 系统相关 > 详细

dubbo如何做cache缓存

时间:2018-12-15 22:01:43      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:temp   note   保存   class   通过   constant   not   使用   put   

duubo如何使用cache的?
CacheFilterclass里面有,这个filter既可以在provider也可以在consumer
if (cacheFactory != null && ConfigUtils.isNotEmpty(invoker.getUrl().getMethodParameter(invocation.getMethodName(), Constants.CACHE_KEY))) {
可见只要对方法url加了cache标志,就会使用cache,通过cacheFactory得到几个cache,重点说下lru的cache

lru-cache继承自LinkedHashMap,由于这个map没有线程安全,所以所有操作都加了排他锁。
既然是cache,为了更快读取到数据,肯定用hashmap,但是hashmap无法做到lru,为了解决这个问题,就用到了LinkedHashMap,这个map跟hashmap不同的地方就在于,链表部分是双向的,因此对于每次put进来Entry,除了将其保存到哈希表中对应的位置上之外,还会将其插入到双向链表的尾部(有头尾指针)来保证插入的顺序,从而达到lru的作用。

dubbo如何做cache缓存

标签:temp   note   保存   class   通过   constant   not   使用   put   

原文地址:https://www.cnblogs.com/notlate/p/10124850.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!