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.
@@ -499,7 +499,7 @@ var mergeCount = redis.CountHyperLog("mergedset"); //6
499
499
500
500
### Scan APIs
501
501
502
-
Redis v2.8 introduced a beautiful new [SCAN](http://redis.io/commands/scan) operation that provides an optimal strategy for traversing a redis instance entire keyset in managable-size chunks utilizing only a client-side cursor and without introducing any server state. It's a higher performance alternative and should be used instead of [KEYS](http://redis.io/commands/keys) in application code. SCAN and its related operations for traversing members of Sets, Sorted Sets and Hashes are now available in the Redis Client in the following API's:
502
+
Redis v2.8 introduced a beautiful new [SCAN](http://redis.io/commands/scan) operation that provides an optimal strategy for traversing a redis instance entire keyset in managable-size chunks utilizing only a client-side cursor and without introducing any server state. It's a higher performance alternative and should be used instead of [KEYS](http://redis.io/commands/keys) in application code. SCAN and its related operations for traversing members of Sets, Sorted Sets and Hashes are now available in the Redis Client in the following APIs:
503
503
504
504
```csharp
505
505
publicinterfaceIRedisClient
@@ -618,9 +618,9 @@ r = redis.ExecCachedLua(FastScanScript, sha1 =>
618
618
redis.ExecLuaSha(sha1, "key:*", "10"));
619
619
```
620
620
621
-
### IRedisClient LUA API's
621
+
### IRedisClient LUA APIs
622
622
623
-
The `IRedisClient`API's for [redis server-side LUA support](http://redis.io/commands/eval) have been re-factored into the more user-friendly API's below:
623
+
The `IRedisClient`APIs for [redis server-side LUA support](http://redis.io/commands/eval) have been re-factored into the more user-friendly APIs below:
0 commit comments