Search Results for

    Show / Hide Table of Contents
    View Source

    Class FastDictionaryAppCacheBase

    Provides a base class to fast, dictionary-based IAppCache implementations.

    Inheritance
    System.Object
    Namespace: Umbraco.Cms.Core.Cache
    Assembly: Umbraco.Core.dll
    Syntax
    public abstract class FastDictionaryAppCacheBase : IAppCache

    Fields

    View Source

    CacheItemPrefix

    Declaration
    protected const string CacheItemPrefix = "umbrtmche"
    Field Value
    Type Description
    System.String

    Methods

    View Source

    Clear()

    Removes all items from the cache.

    Declaration
    public virtual void Clear()
    View Source

    Clear(String)

    Removes an item identified by its key from the cache.

    Declaration
    public virtual void Clear(string key)
    Parameters
    Type Name Description
    System.String key

    The key of the item.

    View Source

    ClearByKey(String)

    Clears items with a key starting with the specified value.

    Declaration
    public virtual void ClearByKey(string keyStartsWith)
    Parameters
    Type Name Description
    System.String keyStartsWith

    The StartsWith value to use in the search.

    View Source

    ClearByRegex(String)

    Clears items with a key matching a regular expression.

    Declaration
    public virtual void ClearByRegex(string regex)
    Parameters
    Type Name Description
    System.String regex

    The regular expression.

    View Source

    ClearOfType(Nullable<Type>)

    Declaration
    public virtual void ClearOfType(Type? type)
    Parameters
    Type Name Description
    System.Nullable<Type> type
    View Source

    ClearOfType<T>()

    Removes items of a specified type from the cache.

    Declaration
    public virtual void ClearOfType<T>()
    Type Parameters
    Name Description
    T

    The type of the items to remove.

    Remarks

    If the type is an interface, then all items of a type implementing that interface are removed. Otherwise, only items of that exact type are removed (items of type inheriting from the specified type are not removed).

    View Source

    ClearOfType<T>(Func<String, T, Boolean>)

    Removes items of a specified type from the cache.

    Declaration
    public virtual void ClearOfType<T>(Func<string, T, bool> predicate)
    Parameters
    Type Name Description
    Func<System.String, T, System.Boolean> predicate

    The predicate to satisfy.

    Type Parameters
    Name Description
    T

    The type of the items to remove.

    Remarks

    If the type is an interface, then all items of a type implementing that interface are removed. Otherwise, only items of that exact type are removed (items of type inheriting from the specified type are not removed).

    View Source

    EnterReadLock()

    Declaration
    protected abstract void EnterReadLock()
    View Source

    EnterWriteLock()

    Declaration
    protected abstract void EnterWriteLock()
    View Source

    ExitReadLock()

    Declaration
    protected abstract void ExitReadLock()
    View Source

    ExitWriteLock()

    Declaration
    protected abstract void ExitWriteLock()
    View Source

    Get(String)

    Gets an item identified by its key.

    Declaration
    public virtual object Get(string key)
    Parameters
    Type Name Description
    System.String key

    The key of the item.

    Returns
    Type Description
    System.Object

    The item, or null if the item was not found.

    View Source

    Get(String, Func<Object>)

    Gets or creates an item identified by its key.

    Declaration
    public abstract object Get(string key, Func<object> factory)
    Parameters
    Type Name Description
    System.String key

    The key of the item.

    Func<System.Object> factory

    A factory function that can create the item.

    Returns
    Type Description
    System.Object

    The item.

    View Source

    GetCacheKey(String)

    Declaration
    protected string GetCacheKey(string key)
    Parameters
    Type Name Description
    System.String key
    Returns
    Type Description
    System.String
    View Source

    GetDictionaryEntries()

    Declaration
    protected abstract IEnumerable<KeyValuePair<object, object>> GetDictionaryEntries()
    Returns
    Type Description
    IEnumerable<KeyValuePair<System.Object, System.Object>>
    View Source

    GetEntry(String)

    Declaration
    protected abstract object GetEntry(string key)
    Parameters
    Type Name Description
    System.String key
    Returns
    Type Description
    System.Object
    View Source

    RemoveEntry(String)

    Declaration
    protected abstract void RemoveEntry(string key)
    Parameters
    Type Name Description
    System.String key
    View Source

    SearchByKey(String)

    Gets items with a key starting with the specified value.

    Declaration
    public virtual IEnumerable<object> SearchByKey(string keyStartsWith)
    Parameters
    Type Name Description
    System.String keyStartsWith

    The StartsWith value to use in the search.

    Returns
    Type Description
    IEnumerable<System.Object>

    Items matching the search.

    View Source

    SearchByRegex(String)

    Gets items with a key matching a regular expression.

    Declaration
    public virtual IEnumerable<object> SearchByRegex(string regex)
    Parameters
    Type Name Description
    System.String regex

    The regular expression.

    Returns
    Type Description
    IEnumerable<System.Object>

    Items matching the search.

    • Improve this Doc
    • View Source
    In This Article
    • Fields
      • CacheItemPrefix
    • Methods
      • Clear()
      • Clear(String)
      • ClearByKey(String)
      • ClearByRegex(String)
      • ClearOfType(Nullable<Type>)
      • ClearOfType<T>()
      • ClearOfType<T>(Func<String, T, Boolean>)
      • EnterReadLock()
      • EnterWriteLock()
      • ExitReadLock()
      • ExitWriteLock()
      • Get(String)
      • Get(String, Func<Object>)
      • GetCacheKey(String)
      • GetDictionaryEntries()
      • GetEntry(String)
      • RemoveEntry(String)
      • SearchByKey(String)
      • SearchByRegex(String)
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX