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:
@@ -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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user