Reputation: 4293
I'm using ServiceStack.Redis.IRedisNativeClient but this interface doesn't include the TYPE command. Why? How can I access this functionality?
Upvotes: 1
Views: 114
Reputation: 4293
ServiceStack.Redis.RedisNativeClient contains a 'Type' method and a 'GetEntryType' method (which returns an enum instead of string). These methods are just missing from the interface (IRedisNativeClient)
Upvotes: 2