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

Commit ac3e258

Browse files
authored
Merge pull request #225 from Layoric/readme-update
Readme update
2 parents 32f82ba + 71bcf88 commit ac3e258

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -740,12 +740,12 @@ The `ServiceStack.Redis.RedisClient` class below implements the following interf
740740
* [ICacheClient](https://github.com/ServiceStack/ServiceStack/wiki/Caching) - If you are using Redis solely as a cache, you should bind to the [ServiceStack's common interface](https://github.com/ServiceStack/ServiceStack.Redis/wiki/Caching) as there already are In-Memory an Memcached implementations available in ServiceStack, allowing you to easily switch providers in-future.
741741
* [IRedisNativeClient](https://github.com/ServiceStack/ServiceStack.Redis/wiki/IRedisNativeClient) - For those wanting a low-level raw byte access (where you can control your own serialization/deserialization) that map 1:1 with Redis operations of the same name.
742742

743-
For most cases if you require access to Redis-specific functionality you would want to bind to the interface below:
743+
For most cases if you require access to Redis specific functionality you would want to bind to the interface below:
744744

745745
* [IRedisClient](https://github.com/ServiceStack/ServiceStack.Redis/wiki/IRedisClient) - Provides a friendlier, more descriptive API that lets you store values as strings (UTF8 encoding).
746746
* [IRedisTypedClient](https://github.com/ServiceStack/ServiceStack.Redis/wiki/IRedisTypedClient) - created with `IRedisClient.As<T>()` - it returns a 'strongly-typed client' that provides a typed-interface for all redis value operations that works against any C#/.NET POCO type.
747747

748-
The class hierachy for the C# Redis clients effectively look like:
748+
The class hierarchy for the C# Redis clients effectively look like:
749749

750750
RedisTypedClient (POCO) > RedisClient (string) > RedisNativeClient (raw byte[])
751751

0 commit comments

Comments
 (0)