Delete Group Data in Cache with SQL Query [Deprecated]
NCache provides object queries similar to SQL that allow you to delete cache items based on specified criteria, making it useful for cache cleanup and logical data partition management. To support this, NCache extends standard SQL syntax with the special $Group$ keyword, which enables you to target and delete all cache items belonging to a specific group or set of groups. The delete operation is executed using ExecuteNonQuery, which processes the query entirely on the server to minimize network overhead and returns the number of cache items removed. To use this approach, cached objects must be query-indexed and associated with groups in advance.
Prerequisites
Before deleting group data in cache using the SQL Query, ensure that the following prerequisites are fulfilled:
- Install the following NuGet packages in your .NET client application:
- Enterprise: Alachisoft.NCache.SDK
- Open Source: Alachisoft.NCache.Opensource.SDK
Include the following namespaces in your application:
The cache must be running.
- Make sure that the data being added is serializable.
- Custom classes/searchable attributes must be indexed as explained in Configuring Query Indexes.
- For API details, refer to: ICache, ICacheReader, QueryCommand, ExecuteNonQuery, SearchService.
Delete Group
Given certain criteria, you can remove groups present in the cache with SQL queries. The following example removes all the data against a certain group through the SQL delete query.
try
{
// Precondition: Cache is already connected
// A user wants to remove the West Coast Customers Group as this region is no longer supported in their store
// Custom class is query indexed through the NCache Management Center or config.ncconf
// Create SQL Query with the specified criteria
// Make sure to use the Fully Qualified Name (FQN)
string query = "DELETE FROM FQN.Customer WHERE $Group$ = ?";
// Use QueryCommand for query execution
var queryCommand = new QueryCommand(query);
// Providing parameters for query
queryCommand.Parameters.Add("$Group$", "West Coast Customers");
// 'rowsAffected' number of items removed from cache
int rowsAffected = cache.SearchService.ExecuteNonQuery(queryCommand);
if (rowsAffected == 0)
{
Console.WriteLine($"No West Coast Customers removed");
}
}
catch (OperationFailedException ex)
{
if (ex.ErrorCode == NCacheErrorCodes.INCORRECT_FORMAT)
{
// Make sure that the query format is correct
}
else
{
// Exception can occur due to:
// Connection Failures
// Operation Timeout
// Operation performed during state transfer
}
}
catch (Exception ex)
{
// Any other generic exception like ArgumentNullException or ArgumentException
}
Note
To ensure the operation is fail-safe, it is recommended to handle any potential exceptions within your application, as explained in Handling Failures.
For more details on object queries, please refer to the SQL Reference for NCache section.
Additional Resources
NCache provides sample application for Groups on GitHub.
See Also
.NET: Alachisoft.NCache.Client namespace.
Java: com.alachisoft.ncache.client namespace.
Python: ncache.client class.
Node.js: Cache class.