- 19 Mar, 2019 1 commit
-
-
Yossi Gottlieb authored
-
- 18 Mar, 2019 4 commits
-
-
Yossi Gottlieb authored
-
Yossi Gottlieb authored
-
Yossi Gottlieb authored
-
Yossi Gottlieb authored
-
- 14 Mar, 2019 1 commit
-
-
antirez authored
-
- 13 Mar, 2019 1 commit
-
-
swilly22 authored
-
- 11 Mar, 2019 1 commit
-
-
swilly22 authored
-
- 12 Feb, 2019 1 commit
-
-
Guy Benoish authored
In some cases processMultibulkBuffer uses sdsMakeRoomFor to expand the querybuf, but later in some cases it uses that query buffer as is for an argv element (see "Optimization"), which means that the sds in argv may have a lot of wasted space, and then in case modules keep that argv RedisString inside their data structure, this space waste will remain for long (until restarted from rdb).
-
- 01 Feb, 2019 2 commits
-
-
antirez authored
It does not make much sense to limit what modules can do: the admin should instead limit what module commnads an user may call. So RedisModule_Call() and other module operations should be able to execute everything they want: the limitation should be posed by the API exported by the module itself.
-
antirez authored
-
- 09 Jan, 2019 3 commits
- 20 Dec, 2018 7 commits
- 13 Dec, 2018 1 commit
-
-
Guy Benoish authored
-
- 04 Oct, 2018 1 commit
-
-
Hamid Alaei authored
-
- 01 Oct, 2018 1 commit
-
-
Hamid Alaei authored
-
- 27 Sep, 2018 3 commits
- 26 Sep, 2018 1 commit
-
-
antirez authored
-
- 25 Sep, 2018 5 commits
-
-
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 4 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
-
antirez authored
-
antirez authored
-
- 21 Sep, 2018 1 commit
-
-
antirez authored
-
- 19 Sep, 2018 2 commits