mirror of
https://github.com/fluencelabs/redis
synced 2025-06-12 08:41:21 +00:00
addReplyHumanLongDouble() API added.
Send a long double or double as a bulk reply, in a human friendly format.
This commit is contained in:
@ -1104,6 +1104,7 @@ void addReplyBulkSds(client *c, sds s);
|
||||
void addReplyError(client *c, const char *err);
|
||||
void addReplyStatus(client *c, const char *status);
|
||||
void addReplyDouble(client *c, double d);
|
||||
void addReplyHumanLongDouble(client *c, long double d);
|
||||
void addReplyLongLong(client *c, long long ll);
|
||||
void addReplyMultiBulkLen(client *c, long length);
|
||||
void copyClientOutputBuffer(client *dst, client *src);
|
||||
|
Reference in New Issue
Block a user