Click or drag to resize

ICacheApi Interface

Provide methods for caching.

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
C#
public interface ICacheApi

The ICacheApi type exposes the following members.

Methods
 NameDescription
Public methodCode exampleContainsKey Determines whether a cache entry exists in the cache.
Public methodCode exampleGetT Returns an entry from the cache.
Public methodCode exampleRemove Removes the specified item from the cache.
Public methodCode exampleSetT(String, T) Inserts a cache entry into the cache by using a key and a value with default expiration time which is 15 minutes.
Public methodCode exampleSetT(String, T, TimeSpan) Inserts a cache entry into the cache by using a key and a value and specifies time-based expiration details.
Public methodCode exampleSetT(String, T, TimeSpan, Boolean) Inserts a cache entry into the cache by using a key and a value and specifies whether it is for sliding expiration or time-based expiration.
Public methodCode exampleTryGetT Get item from cached if return true, otherwise it returns false
Top
Example
C#
var dataApi = ctx.Use<IDataApi>(); 
var cacheApi = ctx.Use<ICacheApi>();

// In this example, we try to cache departments by id
var cacheKey = ctx.Input.DepartmentId;
object cached;

if (cacheApi.TryGet(cacheKey, out cached))
{
    Log.Info("Cached key {Key} found {Cached}.", cacheKey, cached);
}
else
{
    Log.Info("Cache key {Key} does not exist. Fetch from DB and cache...", cacheKey);
    var department = dataApi.Load(ctx.Input.DepartmentId);
    cacheApi.Set(cacheKey, department, TimeSpan.FromSeconds(120));
}
See Also