| 680 | ///////////////////////////////////////////////////////////////////////////// |
| 681 | |
| 682 | bool redis_string::mset(const std::map<string, string>& objs) |
| 683 | { |
| 684 | build("MSET", NULL, objs); |
| 685 | return check_status(); |
| 686 | } |
| 687 | |
| 688 | bool redis_string::mset(const std::vector<string>& keys, |
| 689 | const std::vector<string>& values) |