You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by li...@apache.org on 2021/02/22 08:15:08 UTC

[dubbo] branch master updated: add LFU policy configuration. (#7083)

This is an automated email from the ASF dual-hosted git repository.

liujun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new 1d9619d  add LFU policy configuration. (#7083)
1d9619d is described below

commit 1d9619da1c04f28117b78802d47d01bb897fdcf5
Author: why技术 <th...@outlook.com>
AuthorDate: Mon Feb 22 16:14:43 2021 +0800

    add LFU policy configuration. (#7083)
---
 .../META-INF/dubbo/internal/org.apache.dubbo.cache.CacheFactory        | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dubbo-filter/dubbo-filter-cache/src/main/resources/META-INF/dubbo/internal/org.apache.dubbo.cache.CacheFactory b/dubbo-filter/dubbo-filter-cache/src/main/resources/META-INF/dubbo/internal/org.apache.dubbo.cache.CacheFactory
index c849461..54a1dbf 100644
--- a/dubbo-filter/dubbo-filter-cache/src/main/resources/META-INF/dubbo/internal/org.apache.dubbo.cache.CacheFactory
+++ b/dubbo-filter/dubbo-filter-cache/src/main/resources/META-INF/dubbo/internal/org.apache.dubbo.cache.CacheFactory
@@ -1,4 +1,5 @@
 threadlocal=org.apache.dubbo.cache.support.threadlocal.ThreadLocalCacheFactory
 lru=org.apache.dubbo.cache.support.lru.LruCacheFactory
 jcache=org.apache.dubbo.cache.support.jcache.JCacheFactory
-expiring=org.apache.dubbo.cache.support.expiring.ExpiringCacheFactory
\ No newline at end of file
+expiring=org.apache.dubbo.cache.support.expiring.ExpiringCacheFactory
+lfu=org.apache.dubbo.cache.support.lfu.LfuCacheFactory