We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76554a5 commit d7b3df8Copy full SHA for d7b3df8
1 file changed
src/ServiceStack.Redis/RedisClientManagerCacheClient.cs
@@ -1,5 +1,6 @@
1
using System;
2
using System.Collections.Generic;
3
+using System.Linq;
4
using ServiceStack.Caching;
5
6
namespace ServiceStack.Redis
@@ -212,7 +213,7 @@ public IEnumerable<string> GetKeysByPattern(string pattern)
212
213
{
214
using (var client = (RedisClient)GetClient())
215
- return client.GetKeysByPattern(pattern);
216
+ return client.GetKeysByPattern(pattern).ToList();
217
}
218
219
0 commit comments