0

我正在尝试使用谷歌的番石榴缓存,我只是用 expireAfterWrite 测试它,间隔为 1 分钟。在我正在处理的应用程序中,有数百个用户。所以我的理解是,当第一个人访问缓存时,我们从数据库中填充它,然后一分钟计时器应该开始倒计时。现在缓存已满。我们总是会在那一分钟内从缓存中获取它。一分钟后,它将过期,我们再次从数据库中获取它。

但是,似乎每次我在一分钟内访问缓存时,计时器都会重置。这是为什么?如果我在一分钟内没有访问缓存,缓存就会过期并且工作正常。

代码:

 Cache<Long, List<someObj>> cacheMap = CacheBuilder.newBuilder().maximumSize(maxSize).expireAfterWrite(maxTime, TimeUnit.MINUTES).removalListener(new RemovalListener<Long, List<someObj>>() {
    public void onRemoval(RemovalNotification<Long, List<someObj>> notification) {
        if (notification.getCause() == RemovalCause.EXPIRED) {
            logger.info("Value " + notification.getValue() + " has been expired");
        } else {
            logger.info("Just removed for some reason");
        }
    }
}).build();

...
//Convert to ConcurrentHashMap
cacheMap = someCache.asMap();

...


public List<someObj> getAllData(final Long orgId, final User user) {
    // Get requests from cache
    List<Request> cacheList = overdueSlaMap.get(orgId);

    // Fill cached requests if null
    cacheList = fillCacheIfNecessary(orgId, cacheList, overdueSlaMap);  

    return cacheList;
}

//Strategy for reading and writing to cache
//This method is fine. On first load, cache is empty so we fill it from database. Wait one minute, value expires and cache is empty again so we get from cache. 
//However, everytime I refresh the page the one minute timer starts again. Surely, the one minute timer within the Guava Cache should not refresh regardless of how many times I access the cache within that one minute period. 
 private List<someObj> fillCacheIfNecessary(List<someObj> cacheList, ConcurrentMap<Long, List<someObj>> cacheMap) {

        // If the cache is empty then we will try to fill it from the database.
        if (cacheList == null) {
            logger.info("populating cache");
            List<someObj> objList = new ArrayList<someObj>();

            // if bla bla
            if (such and such) {
                objList = service.getFromDatabase(someArg);
            } else {
                objList = service.getFromDatabase(anotherarg);
            }

            // Concurrently lock the new cacheList retrieved from the database.
            List<someObj> newValue = Collections.unmodifiableList(objList);

            // Only insert if new value does not exist in cache map
            List<someObj> oldValue = cacheMap.putIfAbsent(orgId, newValue);

            // If old value already exists then we use the old value otherwise we use the new value
            cacheList = ((oldValue != null && !oldValue.isEmpty()) ? oldValue : newValue);
        }
        return cacheList;

    }

编辑

我从控制器调用缓存:

public ModelAndView getNotifications(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
    User user = getCurrentUser();
    CacheManager cacheManager = new CacheManager();
    List<someObj> objList = new ArrayList<Request>();

    // Get from database
    if (bla bla) {
        objList = getFromDatabase(user);
    }
    // Get from cache
    else {
        Long orgId = user.getUserOrganisation().getId();
        objList = cacheManager.getAllData(orgId, user);      
    }

    return new ModelAndView(SOMEVIEW);
}

它将有用的数据传递给将其传递给调用数据库的方法的方法。但是,我现在正在尝试重构我的代码以使用 LoadingCache 但这需要我重写 load() 方法,该方法只使用一个参数,这是关键。我需要的不仅仅是键,我需要调用控制器中的 cacheManager,所以它调用了适当的方法。什么是加载方法?什么时候使用?何时调用以及多久调用一次?它会使我的其他方法无效吗?

4

1 回答 1

1

我相信你的问题是你使用Map返回的asMap作为你的缓存。asMap记录为Returns a view of the entries stored in this cache as a thread-safe map. 这里没有任何内容表明您可以将Map用作缓存。我建议更新您的代码以使用CacheAPI 并直接在缓存上调用putget(key, Callable)

您可能需要考虑使用 a LoadingCache,因为我发现 API 更简单。

编辑

因此,首先,仅当缓存中不存在 key 时才调用 load 方法。缓存调用 load 方法来获取应该为它们的键返回的值,然后缓存该值以供下次使用。使用 aCacheLoader或 aCallable的好处之一是检索数据的调用是线程安全的,因为每个键只调用一次,即使同时对同一个键进行多次调用。

如果您需要传递更多信息,请创建一个包装器对象,如下所示:

 public class MyKey{
       final Long orgId; // true key value
       final User user; // other values needed

       // implement equals and hashCode to ONLY use orgId. This will ensure that
       // the same cached value is returned for all requests with the same
       // orgId which is the ACTUAL key.
  }

您也可以使用常规做同样的事情Cache并创建一个Callable包装所需的值。

我会建议CacheLoaderinvalidates fillCacheIfNecessary。简单的调用cache.get()将在内部确定该值是否必须被检索或是否已经存在于缓存中。它正在get, check if null, retrieve为你工作。

于 2014-11-13T13:34:11.917 回答