| 879 | } |
| 880 | |
| 881 | void DoGet(const std::string& key, brpc::RedisReply* output) { |
| 882 | auto it = m.find(key); |
| 883 | if (it != m.end()) { |
| 884 | output->SetString(it->second); |
| 885 | } else { |
| 886 | output->SetNullString(); |
| 887 | } |
| 888 | } |
| 889 | |
| 890 | std::vector<std::vector<std::string> > _batched_command; |
| 891 | int _batch_count; |
nothing calls this directly
no test coverage detected