| 211 | } |
| 212 | |
| 213 | inline void RedisReply::SetNullString() { |
| 214 | if (_type != REDIS_REPLY_NIL) { |
| 215 | Reset(); |
| 216 | } |
| 217 | _type = REDIS_REPLY_STRING; |
| 218 | _length = npos; |
| 219 | } |
| 220 | |
| 221 | inline void RedisReply::SetStatus(const butil::StringPiece& str) { |
| 222 | return SetStringImpl(str, REDIS_REPLY_STATUS); |