Remove-QueryIndex
This PowerShell cmdlet enables the user to remove pre-defined query indexes for the objects to be added in the cache.
Remove-QueryIndex -CacheName [-AttributesList] -Class [-Port] [-Server] [-Credentials] [-NoLogo]
Examples
- This command removes query indexes for the class Customer.
Remove-QueryIndex -CacheName demoCache -Class Data.Customer
- This command removes query indexes for Customer class on server 20.200.20.11.
Remove-QueryIndex -CacheName demoCache -Class Data.Customer –AttributesList "CustomerID'$'FirstName" -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 |
-CacheName* |
<String> |
Specifies the name of the cache for which query indexing needs to be removed. |
- |
-AttributesList |
<String> |
Specifies the attributes for removing query indexing. If multiple attributes are needed; they are separated by a ‘$’. |
- |
-Class* |
<String> |
Specifies the name of the class for which query indexing needs to be removed. |
- |
-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 the NCache server name where the NCache Service is running. |
- |
-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. |
- |
remove-queryindex -cachename [-attributeslist] -class [-port] [-server] [-userid] [-password] [-nologo]
Examples
- This command removes query indexes for the class Customer.
remove-queryindex -cachename demoCache -class Data.Customer
- This command removes query indexes for Customer class on server 20.200.20.11.
remove-queryindex -cachename demoCache -class Data.Customer –attributeslist "CustomerID'$'FirstName" -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 |
-cachename* |
<String> |
Specifies the name of the cache for which query indexing needs to be removed. |
- |
-attributelist |
<String> |
Specifies the attributes for removing query indexing. If multiple attributes are needed; they are separated by a ‘$’. |
- |
-class |
<String> |
Specifies the name of the class for which query indexing needs to be removed. |
- |
-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 the NCache server name where the NCache Service is running. |
- |
-userid |
<String> |
Specifies the user id used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This user id must be the active directory user id. |
- |
-password |
<String> |
Specifies the password of the user that is used to authorize the user for this operation. It is required in case security is enabled on Cache Server. This password must be the same as the active directory user password. |
- |