Export-CacheData - PowerShell Cmdlet
This PowerShell Cmdlet enables the user to create a backup of the data present in the cache. In order to restore the backed up data use the Import Cache Data PowerShell Cmdlet.
Note
This feature is only available in NCache Enterprise.
Export-CacheData [-Name] [-ErrorThreshold] [-FileSize] [-Server] [-Path] [-Credentials] [-NoLogo]
Examples of Export-CacheData - PowerShell Cmdlet
- This PowerShell Cmdlet backs up all the keys currently present in the cache.
Export-CacheData -Name demoCache -Path C:\Backup-path
- This command backs up all the keys currently present in the cache with a maximum of 2 MB data files.
Export-CacheData -Name demoCache -Path C:\Backup-path -FileSize 2
- This command backs up all the keys currently present in the cache on server 20.200.20.11.
Export-CacheData -Name demoCache -Path C:\Backup-path -Server 20.200.20.11
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 cache which has been backed up or restored. | - |
-ErrorThreshold |
<Long> |
Specifies the number of errors that can be tolerated during importing files from the backup. | 1 |
-FileSize |
<Long> |
Specifies the maximum file size that can be generated during backup. | 5MB |
-Server |
<String> |
Specifies the NCache server name or IP address. | - |
-Path* |
<String> |
Specifies the path where the backup data is to be created. | - |
-Credentials |
<pscredential> |
Specifies the user credentials required to authorize access for the specified operation. These credentials should belong to a user who has appropriate permissions at the node. | - |
-NoLogo |
<SwitchParameter> |
Suppresses display of the logo banner. | False |