| 708 | ///////////////////////////////////////////////////////////////////////////// |
| 709 | |
| 710 | int redis_string::msetnx(const std::map<string, string>& objs) |
| 711 | { |
| 712 | build("MSETNX", NULL, objs); |
| 713 | return get_number(); |
| 714 | } |
| 715 | |
| 716 | int redis_string::msetnx(const std::vector<string>& keys, |
| 717 | const std::vector<string>& values) |