summaryrefslogtreecommitdiff
path: root/src/module.c
Commit message (Expand)AuthorAgeFilesLines
* fix uninitialized info_cb var in module.cOran Agra2020-02-031-0/+1
* Merge pull request #6812 from guybe7/str_convert_fixSalvatore Sanfilippo2020-01-301-1/+1
|\
| * ld2string should fail if string contains \0 in the middleGuy Benoish2020-01-301-1/+1
* | Add more info in the unblockClientFromModule() function.antirez2020-01-291-1/+7
|/
* Merge pull request #6699 from guybe7/module_blocked_on_key_timeout_memleakSalvatore Sanfilippo2020-01-291-0/+9
|\
| * Modules: Fix blocked-client-related memory leakGuy Benoish2019-12-301-0/+9
* | Add REDISMODULE_CTX_FLAGS_MULTI_DIRTY.Yossi Gottlieb2019-12-231-0/+6
|/
* Fix ip and missing mode in RM_GetClusterNodeInfo().antirez2019-12-201-2/+5
* Merge pull request #6615 from soloestoy/wrap-also-propagate-as-multiSalvatore Sanfilippo2019-12-191-4/+6
|\
| * Propagation: flag module client as CLIENT_MULTI if neededzhaozhao.zz2019-11-221-0/+5
| * Propagation: wrap commands in also_propagate array with MULIT/EXECzhaozhao.zz2019-11-221-4/+1
* | Modules: rewrite top function doc of AvoidReplicaTraffic().antirez2019-12-181-4/+20
* | Merge pull request #6497 from oranagra/avoid_replica_trafficSalvatore Sanfilippo2019-12-181-0/+9
|\ \
| * | Add module API for AvoidReplicaTrafficOran Agra2019-12-121-0/+9
| |/
* | Avoid changing setKey() API after #6679 fix.antirez2019-12-181-3/+3
* | add a new SET option KEEPTTL that doesn't remove expire timezhaozhao.zz2019-12-181-3/+3
* | Merge pull request #5916 from madolson/dev-unstable-acl-module-prSalvatore Sanfilippo2019-12-171-0/+220
|\ \
| * | Tweaking the documentationMadelyn Olson2019-12-171-19/+17
| * | Add module APIs for custom authenticationMadelyn Olson2019-12-171-0/+222
* | | Split error message so dependandent callers give a useful resultMadelyn Olson2019-12-161-1/+4
* | | Added better exception handling around scripting and moduleMadelyn Olson2019-12-161-2/+9
|/ /
* | Merge branch 'unstable' of github.com:/antirez/redis into unstableantirez2019-12-161-8/+16
|\ \
| * | Improve RM_ModuleTypeReplaceValue() API.Yossi Gottlieb2019-12-121-8/+16
* | | Modules: allow to execute RM_Call() from the module init function.antirez2019-12-131-0/+2
|/ /
* | Remove useless space from moduleLoad().antirez2019-12-121-1/+1
* | Merge branch 'unstable' into ModuleSecuritySalvatore Sanfilippo2019-12-121-109/+2160
|\ \
| * \ Merge pull request #6656 from oranagra/leak_rm_load_from_strSalvatore Sanfilippo2019-12-111-2/+12
| |\ \
| | * | fix leak in RM_LoadDataTypeFromString, and saveOran Agra2019-12-111-2/+12
| * | | Modules: more clarification about disconnection callback.antirez2019-12-091-2/+2
| |/ /
| * | Modules: clarify when the disconnection callback is called.antirez2019-12-051-1/+4
| * | Modules: create timers in contexts without a client.antirez2019-12-031-1/+1
| |/
| * Merge branch 'unstable' into rm_get_server_infoSalvatore Sanfilippo2019-11-211-45/+678
| |\
| | * Merge pull request #6547 from guybe7/module_api_streamsSalvatore Sanfilippo2019-11-211-1/+4
| | |\
| | | * Support streams in general module API functionsGuy Benoish2019-11-061-1/+4
| | * | Recomment PR #6346.antirez2019-11-211-8/+12
| | * | Merge branch 'unstable' into expose_zmalloc_capabilitiesSalvatore Sanfilippo2019-11-211-40/+434
| | |\ \
| | | * \ Merge branch 'unstable' into module-long-doubleSalvatore Sanfilippo2019-11-191-40/+393
| | | |\ \
| | | | * \ Merge pull request #6557 from oranagra/rm_lru_lfu_revizedSalvatore Sanfilippo2019-11-191-22/+42
| | | | |\ \
| | | | | * | rename RN_SetLRUOrLFU -> RM_SetLRU and RN_SetLFUOran Agra2019-11-101-22/+42
| | | | | |/
| | | | * | Merge pull request #6597 from yossigo/rm-call-extended-errorsSalvatore Sanfilippo2019-11-191-3/+5
| | | | |\ \
| | | | | * | Improve RM_Call() errno classification.Yossi Gottlieb2019-11-191-3/+5
| | | | | |/
| | | | * | Merge branch 'unstable' into scan_module_implSalvatore Sanfilippo2019-11-191-4/+87
| | | | |\ \
| | | | | * \ Merge pull request #6577 from oranagra/module_docSalvatore Sanfilippo2019-11-191-0/+2
| | | | | |\ \
| | | | | | * | module docs, missing LOADING flagOran Agra2019-11-141-0/+2
| | | | | | |/
| | | | | * | Merge pull request #4076 from yossigo/add_mt_replacevalueSalvatore Sanfilippo2019-11-191-1/+28
| | | | | |\ \
| | | | | | * | Add RM_ModuleTypeReplaceValue.Yossi Gottlieb2019-11-141-1/+28
| | | | | | |/
| | | | | * | Merge pull request #3383 from yossigo/datatype_load_saveSalvatore Sanfilippo2019-11-191-0/+55
| | | | | |\ \
| | | | | | * | Add ModuleDataType to/from string serialization.Yossi Gottlieb2019-11-041-0/+55
| | | | | | |/
| | | | | * | Slightly more efficient RM_ReplyWithEmptyStringOran Agra2019-11-141-3/+2
| | | | | |/
| | | | * | Add RM_ScanKey to scan hash, set, zset, changes to RM_Scan APIOran Agra2019-11-111-59/+196