NCache 4.4 - Online Documentation

Creating Client Cache

 
Client Cache is a cache that exists on client node. You can create client cache in either of the two ways described below:
 
Using NCache Manager
 
  • Right click Client Cache tree node in Cache Explorer for a cache. Click on the Create New Cache option in the right click menu.
 
  • Enter Enter client cache Name, select client cache Sync Mode and choose the Isolation Level. And then click on the Next button.
 
 
  • Change the cache size if require and click Next.
 
 
  • In Advanced options dialog, you can configure followings:
  • You can change the Eviction policy and Eviction percentage; items will be evicted from cache using the selected policy and percentage value, if eviction is enabled.
  • You can change Clean interval value. Its default value is 15 sec.
  • You can make the cache to start automatically after service restart by checking checkbox Auto start this cache on service startup.
 
 
 
  • This will create client cache on all client nodes and Client cache Creation Status window is displayed showing client cache creation status for each client node.
 
 
 
  • Click Close and the newly created client cache will appear under Client Cache in the Cache Explorer.
 
 
Using Command Line Tool
 
  • Open command prompt
  • Go to the NCache tools directory: cd %NCHOME%/bin/tools
  • Use createclientcache.exe, provide the required information:
createclientcache.exe demoClusteredCache /c demoClientCache /s 20.200.21.95 /N 20.200.21.144 /S 250
  • Hit ENTER key, it will create a client cache demoClientCache for cache demoClusteredCache on node 20.200.21.144.
 
See Also