Create the length prefix of a bulk reply, example: $2234 */
| 973 | |
| 974 | /* Create the length prefix of a bulk reply, example: $2234 */ |
| 975 | void addReplyBulkLen(client *c, robj_roptr obj) { |
| 976 | size_t len = stringObjectLen(obj); |
| 977 | |
| 978 | addReplyLongLongWithPrefix(c,len,'$'); |
| 979 | } |
| 980 | |
| 981 | /* Add a Redis Object as a bulk reply */ |
| 982 | void addReplyBulk(client *c, robj_roptr obj) { |
no test coverage detected