Uses of Class
org.apache.shiro.cache.CacheException

  • Uses of CacheException in org.apache.shiro.cache

    Modifier and Type
    Method
    Description
    void
    Cache.clear()
    Clear all entries from the cache.
    void
    MapCache.clear()
     
    protected abstract <K, V> Cache<K,V>
    AbstractCacheManager.createCache(String name)
    Creates a new Cache instance associated with the specified name.
    Cache.get(K key)
    Returns the Cached value stored under the specified key or null if there is no Cache entry for that key.
    MapCache.get(K key)
     
    <K, V> Cache<K,V>
    AbstractCacheManager.getCache(String name)
    Returns the cache with the specified name.
    <K, V> Cache<K,V>
    CacheManager.getCache(String name)
    Acquires the cache with the specified name.
    Cache.put(K key, V value)
    Adds a Cache entry.
    MapCache.put(K key, V value)
     
    Cache.remove(K key)
    Remove the cache entry corresponding to the specified key.
    MapCache.remove(K key)