类 CaffeineCache

    • 构造器详细资料

      • CaffeineCache

        public CaffeineCache​(String name,
                             com.github.benmanes.caffeine.cache.Cache<Object,​Object> cache)
        Create a CaffeineCache instance with the specified name and the given internal Cache to use.
        参数:
        name - the name of the cache
        cache - the backing Caffeine Cache instance
      • CaffeineCache

        public CaffeineCache​(String name,
                             com.github.benmanes.caffeine.cache.Cache<Object,​Object> cache,
                             boolean allowNullValues)
        Create a CaffeineCache instance with the specified name and the given internal Cache to use.
        参数:
        name - the name of the cache
        cache - the backing Caffeine Cache instance
        allowNullValues - whether to accept and convert null values for this cache
    • 方法详细资料

      • getName

        public final String getName()
        从接口复制的说明: Cache
        Return the cache name.
      • getNativeCache

        public final com.github.benmanes.caffeine.cache.Cache<Object,​ObjectgetNativeCache()
        从接口复制的说明: Cache
        Return the underlying native cache provider.
      • get

        public Cache.ValueWrapper get​(Object key)
        从接口复制的说明: Cache
        Return the value to which this cache maps the specified key.

        Returns null if the cache contains no mapping for this key; otherwise, the cached value (which may be null itself) will be returned in a Cache.ValueWrapper.

        指定者:
        get 在接口中 Cache
        覆盖:
        get 在类中 AbstractValueAdaptingCache
        参数:
        key - the key whose associated value is to be returned
        返回:
        the value to which this cache maps the specified key, contained within a Cache.ValueWrapper which may also hold a cached null value. A straight null being returned means that the cache contains no mapping for this key.
        另请参阅:
        Cache.get(Object, Class)
      • get

        public <T> T get​(Object key,
                         Callable<T> valueLoader)
        从接口复制的说明: Cache
        Return the value to which this cache maps the specified key, obtaining that value from valueLoader if necessary. This method provides a simple substitute for the conventional "if cached, return; otherwise create, cache and return" pattern.

        If possible, implementations should ensure that the loading operation is synchronized so that the specified valueLoader is only called once in case of concurrent access on the same key.

        If the valueLoader throws an exception, it is wrapped in a Cache.ValueRetrievalException

        参数:
        key - the key whose associated value is to be returned
        返回:
        the value to which this cache maps the specified key
      • put

        public void put​(Object key,
                        Object value)
        从接口复制的说明: Cache
        Associate the specified value with the specified key in this cache.

        If the cache previously contained a mapping for this key, the old value is replaced by the specified value.

        参数:
        key - the key with which the specified value is to be associated
        value - the value to be associated with the specified key
      • putIfAbsent

        public Cache.ValueWrapper putIfAbsent​(Object key,
                                              Object value)
        从接口复制的说明: Cache
        Atomically associate the specified value with the specified key in this cache if it is not set already.

        This is equivalent to:

        
         Object existingValue = cache.get(key);
         if (existingValue == null) {
             cache.put(key, value);
             return null;
         } else {
             return existingValue;
         }
         
        except that the action is performed atomically. While all out-of-the-box CacheManager implementations are able to perform the put atomically, the operation may also be implemented in two steps, e.g. with a check for presence and a subsequent put, in a non-atomic way. Check the documentation of the native cache implementation that you are using for more details.
        参数:
        key - the key with which the specified value is to be associated
        value - the value to be associated with the specified key
        返回:
        the value to which this cache maps the specified key (which may be null itself), or also null if the cache did not contain any mapping for that key prior to this call. Returning null is therefore an indicator that the given value has been associated with the key.
      • evict

        public void evict​(Object key)
        从接口复制的说明: Cache
        Evict the mapping for this key from this cache if it is present.
        参数:
        key - the key whose mapping is to be removed from the cache
      • clear

        public void clear()
        从接口复制的说明: Cache
        Remove all mappings from the cache.