Add Local/Remote Clients to Cache in Linux
A client is your web or application server. This can be either local or remote client. You can configure a web/app server as a cache client in NCache using PowerShell.
Pre-requisite
Make sure NCache Service is started. If it is not started, type the following command in a terminal:
> sudo systemctl start ncached
Configure Client
Add-ClientNode cmdlet enables the user to add one or more client nodes to existing clustered cache(s).
This command adds a Client node 20.200.20.29 to demoClusteredCache already existing on server node 20.200.20.200.
Add-ClientNode -CacheName demoClusteredCache -Server 20.200.20.200 -ClientNode 20.200.20.29
See Also
Simulate Cache Usage
Use NCache from .NET Application
Use NCache for ASP.NET Sessions
NCache Programmer's Guide
NCache PowerShell Guide