-
Notifications
You must be signed in to change notification settings - Fork 331
Closed
Labels
Description
Description
RemoveByPrefix does not remove data in redis if a 'prefix' is included in DBConfig.ConnectionStrings
Steps to Reproduce
- DBConfig.ConnectionStrings = new List { "123.123.123.123:6379,password=123,prefix=hmm:" };
- [EasyCachingEvict(CacheKeyPrefix="users", IsAll=true, IsBefore=true)]
Related code
Expected behavior: delete keys like hmm:users:1 , hmm:users:2
Actual behavior: keys are not deleted