NCache 4.4 - Online Documentation

Start Cache

 
You need to include following namespace in your application to start the cache using Cache API.
 
using Alachisoft.NCache.Web.Management;
 
Starting a local cache
 
//start the local cache
CacheManager.StartCache("CacheID","Server_Name");
 
Starting a remote cache
 
//start the remote cache
CacheManager.StartCache("CacheID","Server_Name");
 
 
See Also