You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I save the query cache by the paging parameters and field conditions.
e.g. cache key :$"{entityName}-{pageIndex}-{pageSize}-{filters}" : "Customers-1-30-"
I need to clean these cache items when I update customers data.
so, I want call cache.Remove("Customers-*") or any other solutions?
I saw that "Method 2 - Cancellation Tokens (could also be used to dispose a range of items)", but I use MediatR CQRS pattern in my project, how to use CancellationTokenSource
The text was updated successfully, but these errors were encountered:
I save the query cache by the paging parameters and field conditions.
e.g. cache key :$"{entityName}-{pageIndex}-{pageSize}-{filters}" : "Customers-1-30-"
I need to clean these cache items when I update customers data.
so, I want call cache.Remove("Customers-*") or any other solutions?
I saw that "Method 2 - Cancellation Tokens (could also be used to dispose a range of items)", but I use MediatR CQRS pattern in my project, how to use CancellationTokenSource
The text was updated successfully, but these errors were encountered: