You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 24, 2022. It is now read-only.
Each client is optimized for maximum efficiency and provides layered functionality for maximum developer productivity:
131
+
Each client provides a different layer of abstraction:
132
132
133
133
* The RedisNativeClient exposes raw **byte[]** apis and does no marshalling and passes all values directly to redis.
134
134
* The RedisClient assumes **string** values and simply converts strings to UTF8 bytes before sending to Redis
135
135
* The RedisTypedClient provides a generic interface allowing you to add POCO values. The POCO types are serialized using [.NETs fastest JSON Serializer](http://www.servicestack.net/mythz_blog/?p=344) which is then converted to UTF8 bytes and sent to Redis.
136
136
137
-
At all times you can pick the most optimal Redis Client for your needs so you can achieve maximum efficiency in your applications.
@@ -145,16 +143,6 @@ For multi-threaded applications you can choose from our different client connect
145
143
* BasicRedisClientManager - a load-balance (master-write and read-slaves) client manager that returns a new [IRedisClient](https://github.com/ServiceStack/ServiceStack.Redis/wiki/IRedisClient) connection with the defaults specified (faster when accessing a redis-server instance on the same host).
146
144
* PooledRedisClientManager - a load-balanced (master-write and read-slaves) client manager that utilizes a pool of redis client connections (faster when accessing a redis-server instance over the network).
147
145
148
-
# Download
149
-
150
-
You can download the Redis Client in any one of the following ways:
151
-
152
-
* Packaged by default in [ServiceStack.dll](https://github.com/ServiceStack/ServiceStack/downloads)
153
-
* Available to download separately as a stand-alone [ServiceStack.Redis.dll](https://github.com/ServiceStack/ServiceStack.Redis/downloads)
154
-
* As Source Code via Git: `git clone git://github.com/ServiceStack/ServiceStack.Redis.git`
155
-
* For those interested in having a GUI admin tool to visualize your Redis data should check out the [Redis Admin UI](http://www.servicestack.net/mythz_blog/?p=381)
156
-
157
-
[View the release notes](https://github.com/ServiceStack/ServiceStack.Redis/wiki/Redis-Client-Release-Notes).
0 commit comments