Initialize Cache
After successfully configuring NCache, you can start developing applications utilizing NCache by embedding NCache API calls.
To utilize the APIs, include the following namespace in your application:
Alachisoft.NCache.Web.Caching.
Using Basic Initialize Method
NCache provides InitializeCache method to get an instance of a NCache’s cache, with support of method overloading accommodate multiple scenario handling. This method uses all the properties specified in the client configuration file to initialize the cache.
Cache cache = null;
string cacheName = "demoCache";
try{
cache = NCache.InitializeCache(cacheName);
}
catch (Exception ex){
//handle exception
// Possible Exceptions:
//1. No server available to process the request
//2. client.ncconf does not contain current cache information
}
Initializing Multiple Caches in Single Application
For this exercise, both caches need to be configured previously and they must be in running state.
Cache cache1 = null;
Cache cache2 = null;
string cacheName1 = "demoCache";
string cacheName2 = "myreplicatedcache";
try{
cache1 = NCache.InitializeCache(cacheName1);
cache2 = NCache.InitializeCache(cacheName2);
}
catch (Exception ex){
//handle exception
}
Initializing InProc Cache
Initializing an InProc cache is similar to initializing an OutProc cache except the fact that the InProc cache is not started.
Cache cache = null;
string localCacheName = "myLocalCache";
// Assumption: Cache ID has already been registered and is running
try{
cache = NCache.InitializeCache(localCacheName);
}
catch (Exception exp) {
//handle exception
}
Initializing Cache Using CacheInitParams
CacheInitParams
allows editing values of the properties at initialization
time. These values are the same which can be configured through client.ncconf file.
In this example, the values of RetryInterval
, ConnectionRetries
, EnableKeepAlive
and KeepAliveInterval
properties can be changed; for this application these values will be used
instead of the ones specified in client configuration file.
Cache cache = null;
try {
// Create new InitParam instance
CacheInitParams initParam = new CacheInitParams();
initParam.RetryInterval = 3;
initParam.ConnectionRetries = 2;
initParam.EnableKeepAlive = true;
initParam.KeepAliveInterval = 600;
string cacheName = "demoCache";
cache = NCache.InitializeCache(cacheName, initParam);
}
catch (Exception exp) {
// handle exception
}
Initializing Cache with Security Credentials
If security has been enabled, you need to provide the security credentials while initializing caches so that the authorized user can perform the operation. For more details on Security and using security in NCache, see NCache Security.
To utilize the APIs, include the following namespace in your application:
Alachisoft.NCache.Web.Security
CacheInitParams initParam = new CacheInitParams();
initParam.PrimaryUserCredentials = new SecurityParams(userName, password);
Cache cache = NCache.InitializeCache(cacheName, initParam);
Initializing Remote and Client Cache Simultaneously
Warning
In case you have configured the client cache using NCache Manager ,the basic
public static Cache initializeCache(String cacheId)
call would initialize
both remote cache and client cache.
If separate calls are made for both caches, the local cache does not behave as a client cache - instead it functions as an independent local cache.
This API would return a handler of the remote cache, synchronizing all operations of the client cache.
Cache cache = null;
string remoteCache = "demoRemoteCache";
string clientCache = "demoClientCache";
try {
cache = NCache.InitializeCache(remoteCache, clientCache);
}
catch (Exception ex){
// handle exception
}
Similarly, use following API to Initialize remote and client caches with CacheInitParams
.
public static Cache InitializeCache(string remoteCacheId, CacheInitParams remoteInitParams, string clientCacheId, CacheInitParams clientInitParams);
Troubleshooting
Error: "No server available to process request"
Sometimes a cluster can not be created because the Server and Cluster ports are blocked by firewall. Following error message can occur in this case:
Error: "No server available to process request"
Workaround
Make sure that the Server port (at which NCache Service starts and accepts different client connections) is not blocked by firewall. Default value of this port is '9800'. You can change the default value from Alachisoft.NCache.Service.exe.config file.
- NCache Manager unable to connect with NCache Service:
If NCache Manager is unable to connect with NCache Service, even when it is started, then your system firewall might be blocking Service port. Unblock Service port from system firewall.
Error: "Unable to communicate with server node"
Cluster nodes can also be unable to communicate with each other because of the aforementioned reason as well.
Error: "Unable to communicate with server node"
Workaround
See if your firewall is allowing the Cluster port. Cluster port is a port at which nodes in a cluster communicate. You can change the default value of these ports from NCache Manager. If you have specified a port range in NCache Manager, unblock all ports in range.
Client Socket Deadlock
You may experience a deadlock situation on your client socket because of a long wait for a response from the cache server. This may also result in a lot of waiting threads that may cause performance issues.
Workaround
Step1: Changes on Server Side
Go to Alachisoft.NCache.Service.exe.config located at
[InstallDir]/bin/service
:
Add the following lines in the configuration file:
<add key = "NCacheServer.EnableBadClientDetection" value = "true" />
The value "true" indicates that BadClientDetection is enabled on your client socket. This means that now if a deadlock situation arises on your client socket, the socket will be reset. The default value of this property is "false".
<add key = "NCacheServer.ClientSocketSendTimeout" value = "10" />
When you have enabled BadClientDetection
, you can specify the time interval after which the socket is reset in case of a deadlock. The default value of this property is "10" and this value can not be less than 1.
A few other properties have also been introduced in Alachisoft.NCache.Service.exe.config to help with this issue. Please configure these properties as follows:
<add key ="NCacheServer.EventPriorityRatio" value="30"/>
On the server-side a priority queue is used for events and cache operations. You can configure a ratio of events and cache operations for this queue through the property called EventPriorityRatio
. The default value of this property is 30 which indicates a ratio 30:70 for events and cache operations. The value of this property can not be less than 1.
<add key ="NCacheServer.EventBulkCount" value="50"/>
The cache server now sends events to clients in bulk. Through this property you can set the number of items to be sent in bulk. By default this value is 50 and the value can not be less than 1. This is available in client version 4124 and above.
<add key ="NCacheServer.EventBulkCollectionInterval" value="2"/>
This property is used to set the time interval, in seconds, after which bulk of events is fired even in case the bulk count does not reach the EventBulkCount
that the user has specified. Default value for this property is 2 seconds and the value can not be less than 1.
Restart the NCache service for these changes to take effect.
Step2: Changes on Client Side
Please make the following changes in your App.config/Web.config file:
<configuration>
<appSettings>
<add key ="NCacheClient.AsynchronousEventNotification" value="true"/>
<add key ="NCacheClient.NumberofEventProccesingThreads" value="2"/>
</appSettings>
</configuration>
AsynchronousEventNotification
: Specifies whether events will be fired asynchronously or synchronously on client side. The default value is "true" which indicates that events will be fired asynchronously. The value "false" means that events will be fired synchronously on client side.
NumberofEventProcessingThreads
: When the user has configured events to be fired synchronously, this flag is used to specify the number of threads which will process these events on client side. A very large value can cause performance issues.