Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit f9c6612

Browse files
committed
Update README.md
1 parent cb1e8f1 commit f9c6612

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

README.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ follow [@servicestack](http://twitter.com/servicestack) for twitter updates.
33

44
# An Open Source C# Client for Redis
55

6-
## New in v3.9.37
6+
_Note: the source code is provided as-is - there is no commercial support available for ServiceStack_
77

88
### New IRedisClient LUA API's
99

@@ -128,14 +128,12 @@ The class hierachy for the C# Redis clients effectively look like:
128128

129129
RedisTypedClient (POCO) > RedisClient (string) > RedisNativeClient (raw byte[])
130130

131-
Each client is optimized for maximum efficiency and provides layered functionality for maximum developer productivity:
131+
Each client provides a different layer of abstraction:
132132

133133
* The RedisNativeClient exposes raw **byte[]** apis and does no marshalling and passes all values directly to redis.
134134
* The RedisClient assumes **string** values and simply converts strings to UTF8 bytes before sending to Redis
135135
* 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.
136136

137-
At all times you can pick the most optimal Redis Client for your needs so you can achieve maximum efficiency in your applications.
138-
139137
### Redis Client API Overview
140138
[![Redis Client API](http://servicestack.net/img/Redis-annotated-preview.png)](http://servicestack.net/img/Redis-annotated.png)
141139

@@ -145,16 +143,6 @@ For multi-threaded applications you can choose from our different client connect
145143
* 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).
146144
* 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).
147145

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).
158146

159147
### Redis Server builds for Windows
160148

0 commit comments

Comments
 (0)