I'm working with cache in c# (Microsoft.Extensions.Caching.Memory) as i'm storing multiple data into cache like below.
IMemoryCache cache;
cache.Set("xxxx_1", "xxxx");
cache.Set("xxxx_2", "xxxx");
cache.Set("xxxx_3", "xxxx");
and can also get data one by one.
Getcachedata = (string)cache.Get("xxxx_1")
but i want to get the data complete data which contains Key like xxxx into it. i gone through many articles but didn't get help.
>("abc.xyz"); but i can see key count with positive number
– dev Jan 03 '20 at 11:04