Create the length prefix of a bulk reply, example: $2234 */
| 813 | |
| 814 | /* Create the length prefix of a bulk reply, example: $2234 */ |
| 815 | void addReplyBulkLen(client *c, robj *obj) { |
| 816 | size_t len = stringObjectLen(obj); |
| 817 | |
| 818 | addReplyLongLongWithPrefix(c,len,'$'); |
| 819 | } |
| 820 | |
| 821 | /* Add a Redis Object as a bulk reply */ |
| 822 | void addReplyBulk(client *c, robj *obj) { |
no test coverage detected