NCache 4.4 - Online Documentation

Fetch Data from Cache

Primarily a cache is only considered as effective as its ability to retrieve data.  NCache utilizes the key-value architecture of its store to maximize the ways of data retrieval. Get method  is the primary API provided to serve previously cached data; however basic indexer approach can also be used. Both of these methods are explained below.
 
Retrieve Data using Get Method
 
In this example, the basic Get method is used to retrieve item “Product:1001”. This item has previously been added to the cache. Get method returns general object which needs to be casted accordingly. If a key does not exist in cache null value is returned.
 
string key = "Product:1001";
Product product = null;
try
{
//null is returned if key does not exist in the cache.   
object result = cache.Get(key);
if (result != null)
    {
if (result is Product)
        {
            product = (Product)result;
        }
    }
}
catch (OperationFailedException ex)
{
// handle exception
}
 
Retrieve a CacheItem
 
In this example, the basic GetCacheItem method is used to retrieve item “Product:1001”. This item has been added to the cache. This method returns CacheItem whose value property encapsulates the data; the Object value need to be cast accordingly.
 
string key = "Product:1001";
Product product = null;
try
{
CacheItem result = cache.GetCacheItem(key);
if (result != null)
    {
if (result.Value isProduct)
        {
            product = (Product)result.Value;
        }
    }
}
catch (OperationFailedException ex)
{
// handle exception
}
/ handle exception
}
 
Retrieve Data with Cache Indexer
 
NCache being a key-value paired structure lets the user perform operations like any other indexed based data structure. In this example a cache handle is used to directly access  cached values using square brackets ”[]”.
 
string key = "Product:1001";
Product product = null;
try
{
CacheItem result = cache.GetCacheItem(key);
if (result != null)
    {
if (result.Value isProduct)
        {
            product = (Product)result.Value;
        }
    }
}
catch (OperationFailedException ex)
{
// handle exception
}
/ handle exception
}
 
 
Retrieve Data with Cache Indexer
 
NCache being a key-value paired structure lets the user perform operations like any other indexed based data structure. In this example a cache handle is used to directly access  cached values using square brackets ”[]”.
 
string key = "Product:1001";
Product product = null;
try
{
    object result = cache[key];
          if (result != null)
          {
              if (result is Product)
                {
                    product = (Product)result;
                }
          }
}
catch (OperationFailedException ex)
{
    // handle exception }
 
Check If an Item Exists in Cache
 
In order to verify if a key exists in the cache or not, the contains method can be used. This method determines whether cache contains the specific key and returns true if key already exist in cache and false if not.
 
string key = "Product:1001";
try
{
    if (cache.Contains(key))
    {
        // do something
    }
    else
    {
        // do something
    }
}
catch (OperationFailedException ex)
{
    // handle exception
}
 
See Also