- 25 Sep, 2018 7 commits
-
-
Salvatore Sanfilippo authored
add missing argument to function doc
-
Salvatore Sanfilippo authored
Fix typo in comment
-
antirez authored
-
antirez authored
-
antirez authored
Storing the context is useless, because we can't really reuse that later. For instance in the API RM_DictNext() that returns a RedisModuleString for the next key iterated, the user should pass the new context, because we may run the keys of the dictionary in a different context of the one where the dictionary was created. Also the dictionary may be created without a context, but we may still demand automatic memory management for the returned strings while iterating.
-
antirez authored
-
antirez authored
By using the "C" suffix for functions getting pointer/len, we can do the same in the future for other modules APIs that need a variant with pointer/len and that are now accepting a RedisModuleString.
-
- 24 Sep, 2018 5 commits
-
-
antirez authored
The burden of having to always create RedisModuleString objects within a module context was too much, especially now that we have threaded operations and modules are doing more interesting things. The context in the string API is currently only used for automatic memory managemnet, so now the API was modified so that the user can opt-out this feature by passing a NULL context.
-
antirez authored
-
Pavel Skuratovich authored
-
antirez authored
-
antirez authored
-
- 21 Sep, 2018 1 commit
-
-
antirez authored
-
- 20 Sep, 2018 1 commit
-
-
Guy Korland authored
-
- 19 Sep, 2018 5 commits
- 18 Sep, 2018 3 commits
- 17 Sep, 2018 11 commits
-
-
artix authored
if node is neither migrating nor importing.
-
antirez authored
-
Salvatore Sanfilippo authored
No need to return "OK"
-
Salvatore Sanfilippo authored
typo fix
-
antirez authored
-
antirez authored
-
Salvatore Sanfilippo authored
RedisModule_HashSet call must end with NULL
-
Guy Korland authored
Fix few typos
-
Guy Korland authored
-
Guy Korland authored
Extended the RedisModule_HashSet doc to mark that each call must end with NULL
-
- 16 Sep, 2018 1 commit
-
-
Guy Korland authored
-
- 14 Sep, 2018 1 commit
-
-
antirez authored
-
- 13 Sep, 2018 5 commits
-
-
antirez authored
-
antirez authored
This creates an incentive to run the command and as a side effect experience the art piece inside.
-
Guy Korland authored
No need to return "+OK" in this case since the result is an Array of all the nodes
-
antirez authored
-
antirez authored
-