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

In the old version of redis client for C # , commands like:

redisClient.GetTypedClient<Customer>()

But now, as I saw in the examples, it has been changed to .As<Customer>()

Question

Where is the api documentation for all of these commands?

Third party links will also be appreciated.

This link does not contain documentation for all teams

+4
source share
1 answer

See the full list of avilable API commands here:

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

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

+3

Source: https://habr.com/ru/post/1539384/


All Articles