Uses of Class
org.craftercms.core.exception.InternalCacheEngineException
-
Packages that use InternalCacheEngineException Package Description org.craftercms.core.cache org.craftercms.core.cache.impl org.craftercms.core.service org.craftercms.core.service.impl -
-
Uses of InternalCacheEngineException in org.craftercms.core.cache
Methods in org.craftercms.core.cache that throw InternalCacheEngineException Modifier and Type Method Description voidCache. addScope(String scope, int maxItemsInMemory)Adds a new scope to the cache.voidCache. clearAll()Clears the contents of the entire cache.voidCache. clearScope(String scope)Clears the contents of the specified scope in the cache.CacheItemCache. get(String scope, Object key)Retrieves an item from a scope.Collection<Object>Cache. getKeys(String scope)Returns a list of the keys of the items present in the specified scope.Collection<String>Cache. getScopes()Returns the list of scopes this cache manages.intCache. getSize(String scope)Returns the quantity of items present in the specified scope.booleanCache. hasKey(String scope, Object key)Returns true if there's and item with the specified key in the specified scope.booleanCache. hasScope(String scope)Returns true if the specified scope exists in the cache.voidCache. put(String scope, Object key, Object value)Puts an item in a scope.voidCache. put(String scope, Object key, Object value, long expireAfter, long refreshFrequency, CacheLoader loader, Object... loaderParams)Puts and item in a scope.booleanCache. remove(String scope, Object key)Removes an item from a scope.voidCache. removeScope(String scope)Removes an existing scope and all the items that are in it. -
Uses of InternalCacheEngineException in org.craftercms.core.cache.impl
Methods in org.craftercms.core.cache.impl that throw InternalCacheEngineException Modifier and Type Method Description voidCacheImpl. addScope(String scope, int maxItemsInMemory)Adds a new scope to the cache.voidCacheImpl. clearAll()Clears the contents of the entire cache.voidCacheImpl. clearScope(String scope)Clears the contents of the specified scope in the cache.CacheItemCacheImpl. get(String scope, Object key)Retrieves an item from a scope.Collection<Object>CacheImpl. getKeys(String scope)Returns a list of the keys of the items present in the specified scope.Collection<String>CacheImpl. getScopes()Returns the list of scopes this cache manages.intCacheImpl. getSize(String scope)Returns the quantity of items present in the specified scope.booleanCacheImpl. hasKey(String scope, Object key)Returns true if there's and item with the specified key in the specified scope.booleanCacheImpl. hasScope(String scope)Returns true if the specified scope exists in the cache.voidCacheImpl. put(String scope, Object key, Object value)Puts an item in a scope.voidCacheImpl. put(String scope, Object key, Object value, long expireAfter, long refreshFrequency, CacheLoader loader, Object... loaderParams)Puts and item in a scope.booleanCacheImpl. remove(String scope, Object key)Removes an item from a scope.voidCacheImpl. removeScope(String scope)Removes an existing scope and all the items that are in it. -
Uses of InternalCacheEngineException in org.craftercms.core.service
Methods in org.craftercms.core.service that throw InternalCacheEngineException Modifier and Type Method Description voidCacheService. addScope(Context context)Adds a new scope to the cache for the given context.voidCacheService. clearAll()Clears the contents of the entire cache.voidCacheService. clearScope(Context context)Clears the contents of the scope of the given context.ObjectCacheService. get(Context context, Object key)Retrieves an item's value from the scope of the given context, or null if not found.CacheItemCacheService. getItem(Context context, Object key)Retrieves an item from the scope of the given context, or null if not found.Collection<?>CacheService. getKeys(Context context)Returns a list of the keys of the items present in the scope of the given context.Collection<String>CacheService. getScopes()Returns the list of scopes this cache manages.intCacheService. getSize(Context context)Returns the quantity of items present in scope of the given context.booleanCacheService. hasKey(Context context, Object key)Returns true if there's and item with the specified key in the scope of the given context.booleanCacheService. hasScope(Context context)Returns true if the scope of the given context exists.voidCacheService. put(Context context, Object key, Object value)Puts an item in the scope of the given context.voidCacheService. put(Context context, Object key, Object value, CachingOptions cachingOptions, CacheLoader loader, Object... loaderParams)Puts and item in the scope of the given context.booleanCacheService. remove(Context context, Object key)Removes an item from the scope of the given context.voidCacheService. removeScope(Context context)Removes the scope associated to the given context -
Uses of InternalCacheEngineException in org.craftercms.core.service.impl
Methods in org.craftercms.core.service.impl that throw InternalCacheEngineException Modifier and Type Method Description voidCacheServiceImpl. addScope(Context context)voidCacheServiceImpl. clearAll()voidCacheServiceImpl. clearScope(Context context)ObjectCacheServiceImpl. get(Context context, Object key)CacheItemCacheServiceImpl. getItem(Context context, Object key)Collection<?>CacheServiceImpl. getKeys(Context context)Collection<String>CacheServiceImpl. getScopes()intCacheServiceImpl. getSize(Context context)booleanCacheServiceImpl. hasKey(Context context, Object key)booleanCacheServiceImpl. hasScope(Context context)voidCacheServiceImpl. put(Context context, Object key, Object value)voidCacheServiceImpl. put(Context context, Object key, Object value, CachingOptions cachingOptions, CacheLoader loader, Object... loaderParams)booleanCacheServiceImpl. remove(Context context, Object key)voidCacheServiceImpl. removeScope(Context context)
-