1
0
mirror of https://github.com/fluencelabs/redis synced 2025-04-05 01:01:04 +00:00

vector of strings is implemented now

This commit is contained in:
Ramon Snir 2016-04-28 13:30:57 +03:00 committed by antirez
parent a00e872560
commit 909a707b72

@ -261,7 +261,7 @@ This is the full list of format specifiers:
* **b** -- C buffer, two arguments needed: C string pointer and `size_t` length. * **b** -- C buffer, two arguments needed: C string pointer and `size_t` length.
* **s** -- RedisModuleString as received in `argv` or by other Redis module APIs returning a RedisModuleString object. * **s** -- RedisModuleString as received in `argv` or by other Redis module APIs returning a RedisModuleString object.
* **l** -- Long long integer. * **l** -- Long long integer.
* **v** -- NOT YET IMPLEMENTED: Array of RedisModuleString objects. * **v** -- Array of RedisModuleString objects.
* **!** -- This modifier just tells the function to replicate the command to slaves and AOF. It is ignored from the point of view of arguments parsing. * **!** -- This modifier just tells the function to replicate the command to slaves and AOF. It is ignored from the point of view of arguments parsing.
The function returns a `RedisModuleCallReply` object on success, on The function returns a `RedisModuleCallReply` object on success, on