Royi Namir
Royi Namir

Reputation: 148514

Redis client for C# (serviceStack) - where is the documentation?

The old version of redis client for c# were using commands like :

redisClient.GetTypedClient<Customer>()

But now - as I've seen in examples , it was changed to .As<Customer>()

Question

Where is the Api-documentation for all those commands ?

Third party links would be also appreciated

This link does not contain the documentation for all commands

Upvotes: 4

Views: 3442

Answers (1)

Shachaf.Gortler
Shachaf.Gortler

Reputation: 5735

For a full list of avilable API commands look here :

For IRedisClient API see https://github.com/ServiceStack/ServiceStack.Redis/wiki/IRedisClient

For IRedisNativeClient API see https://github.com/ServiceStack/ServiceStack.Redis/wiki/IRedisNativeClient

Upvotes: 3

Related Questions