Brent
Brent

Reputation: 4293

Where's the TYPE command in ServiceStack.Redis?

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

Answers (1)

Brent
Brent

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

Related Questions