类 JCacheCache

    • 构造器详细资料

      • JCacheCache

        public JCacheCache​(javax.cache.Cache<Object,​Object> jcache)
        Create a JCacheCache instance.
        参数:
        jcache - backing JCache Cache instance
      • JCacheCache

        public JCacheCache​(javax.cache.Cache<Object,​Object> jcache,
                           boolean allowNullValues)
        Create a JCacheCache instance.
        参数:
        jcache - backing JCache 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 javax.cache.Cache<Object,​ObjectgetNativeCache()
        从接口复制的说明: Cache
        Return the underlying native cache provider.
      • 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.