Remove-Cache
This PowerShell cmdlet enables the user to remove an already registered cache from an NCache server or cluster by unregistering it from the NCache service and permanently deleting its associated data. The Remove-Cache cmdlet requires the cache name and optionally supports specifying the target server, port, and credentials for secure clusters. Since the operation results in permanent data removal, backing up data beforehand is recommended if needed.
Remove-Cache -Name [-Port] [-Server] [-Credentials] [-NoLogo]
Examples
- This command removes the cache named demoCache from the local server.
Remove-Cache -Name demoCache
- This command removes the cache named demoCache from the server node 20.200.20.11.
Remove-Cache -Name demoCache -Server 20.200.20.11
- This command uses a specific port and removes the demoCache from server 20.200.20.11.
Remove-Cache -Name demoCache -Server 20.200.20.11 -Port 8250
- This command removes the cache named demoCache from the local server using security credentials.
Remove-Cache -Name demoCache -Credentials (Get-Credential john_smith)
Properties
Note
The parameters with asterisk (*) on their names are the required parameters and the rest are optional.
| Parameters | Data Types | Description | Default Value |
|---|---|---|---|
-Name* |
<String> |
Specifies the name of the already registered cache which needs to be removed. Note: The cache must already exist on the source server. |
- |
-NoLogo |
<SwitchParameter> |
Suppresses display of the logo banner. | False |
-Port |
<Integer> |
Specifies the server port where the NCache Service is listening. | 8250 |
-Server |
<String> |
Specifies a server name where the NCache Service is running and a cache with the specified cache-name is registered. | IP of local machine |
-Credentials |
<pscredential> |
Specifies the user credentials required to authorize access for the specified operation. These credentials should belong to a user with the appropriate permissions at the node. | - |