0
castellazzi created
- ABP Framework version: v8.2.0
- UI Type: Blazor Server
- Database System: EF Core SQL Server
- Tiered (for MVC) or Auth Server Separated (for Angular): yes
- Exception message and full stack trace:
- Steps to reproduce the issue:Using distributed cache (redis) it's possible scan cache search all keys starting with a prefix, for example search 'black*', and will get 'black1,black2' an so on ? Many thanks.
2 Answer(s)
-
0
Hi, ABP's distributed cache abstraction (IDistributedCache) extends ASP.NET Core's distributed cache API. Both of these APIs doesn't provide any functionality to search cache items with a prefix. You can directly use Redis client library to use full API of Redis (it is already installed indirectly in your application, just check their document).
-
0
Thanks.