summaryrefslogtreecommitdiff
path: root/src/modules/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* use $^ instead of $< for linker in module makefile (#10530)judeng2022-04-051-8/+8
|
* Fix src/modules build issue on OS X 11 (#10224)sundb2022-02-011-0/+7
|
* Remove testmodule in src/modules/Makefile. (#9250)Huang Zhw2021-07-191-6/+1
| | | src/modules make failed. As in #3718 testmodule.c was removed. But the makefile was not updated
* Add module APIs for custom authenticationMadelyn Olson2019-12-171-1/+6
|
* Module hooks: fixes and an example module.antirez2019-10-231-1/+7
|
* Add runtest-moduleapi with commandfilter coverage.Yossi Gottlieb2019-03-241-6/+1
|
* Initial command filter experiment.Yossi Gottlieb2019-03-181-1/+5
|
* Modules: remove useless defines in hellotimer.cantirez2018-09-261-1/+6
|
* Modules Timer API: fix infinite loop and export API.antirez2018-03-311-1/+6
|
* Modules Cluster API: add a simple example module.antirez2018-03-301-1/+6
|
* Modules: blocking commands WIP: API exported, a first example.antirez2016-10-071-1/+6
|
* Enable warning in example modules Makefile.antirez2016-10-071-2/+2
|
* Add compiler optimizations to example module makefile.antirez2016-10-021-2/+2
|
* Example modules: Add C99 standard to cflags.antirez2016-09-091-2/+2
|
* Modules: StringAppendBuffer() and ability to retain strings.antirez2016-08-021-1/+6
| | | | | | | | | | | | | RedisModule_StringRetain() allows, when automatic memory management is on, to keep string objects living after the callback returns. Can also be used in order to use Redis reference counting of objects inside modules. The reason why this is useful is that sometimes when implementing new data types we want to reference RedisModuleString objects inside the module private data structures, so those string objects must be valid after the callback returns even if not referenced inside the Redis key space.
* Modules: support for modules native data types.antirez2016-06-031-1/+6
|
* fixed makefile for linuxDvir Volk2016-05-101-2/+12
|
* Modules: first preview 31 March 2016.antirez2016-05-101-0/+17