| 249 | } |
| 250 | |
| 251 | bool redis_hash::hget(const char* key, const char* name, string& result) |
| 252 | { |
| 253 | return hget(key, name, strlen(name), result); |
| 254 | } |
| 255 | |
| 256 | bool redis_hash::hget(const char* key, const char* name, |
| 257 | size_t name_len, string& result) |