2
0
mirror of https://github.com/boostorg/redis.git synced 2026-02-10 11:42:28 +00:00

Commit of the following

- Send function returning a pipeline id.
- Adds more commands.
This commit is contained in:
Marcelo Zimbres
2019-11-24 09:42:28 +01:00
parent 2eafdca0e0
commit fa89f1b359
3 changed files with 71 additions and 25 deletions

View File

@@ -58,7 +58,13 @@ void example1()
+ get("f")
+ expire("f", 10)
+ publish("g", "A message")
+ exec();
+ exec()
+ set("h", {"h"})
+ append("h", "h")
+ get("h")
+ auth("password")
+ bitcount("h")
;
send(std::move(s));
}