- 04 Nov, 2019 4 commits
-
-
Salvatore Sanfilippo authored
Modules: Test RedisModule_BlockClientOnKeys
-
Salvatore Sanfilippo authored
Modules hooks: complete missing hooks for the initial set of hooks
-
Salvatore Sanfilippo authored
-
Guy Benoish authored
-
- 31 Oct, 2019 10 commits
-
-
antirez authored
See #6525, this likely creates a NULL deference if the client was terminated by Redis between the creation of the blocked client and the creation of the thread safe context.
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
Using the is_key_ready() callback plus the reply callback later, creates different issues AFAIK: 1. More complex API. 2. We need to call the reply callback() ASAP if the is_key_ready() interface returned success, however the internals do not work in that way, so when the reply callback is called the setup could be different. To fix that, there is to break the current design that handles the unblocked clients asyncrhonously, and run the list ASAP.
-
antirez authored
Now we handle propagation when we free the context.
-
antirez authored
-
- 30 Oct, 2019 3 commits
- 29 Oct, 2019 5 commits
-
-
Oran Agra authored
* replication hooks: role change, master link status, replica online/offline * persistence hooks: saving, loading, loading progress * misc hooks: cron loop, shutdown, module loaded/unloaded * change the way hooks test work, and add tests for all of the above startLoading() now gets flag indicating what is loaded. stopLoading() now gets an indication of success or failure. adding startSaving() and stopSaving() with similar args and role.
-
Salvatore Sanfilippo authored
Module API for explicit SignalModifiedKey instead of implicit one.
-
Salvatore Sanfilippo authored
Add Github action for CI
-
Salvatore Sanfilippo authored
Fix compilation error introduced by cee6dead
-
Salvatore Sanfilippo authored
Module api RM_CallArgv and test
-
- 28 Oct, 2019 17 commits
-
-
Guy Benoish authored
Need to add calls to REDISMODULE_API_FUNC...
-
Salvatore Sanfilippo authored
Modules: Allow notifying custom keyspace events
-
Oran Agra authored
Adding a test for coverage for RM_Call in a new "misc" unit to be used for various short simple tests also solves compilation warnings in redismodule.h and fork.c
-
Guy Benoish authored
Also, add an API for getting server.notify_keyspace_events Other (unrelated) changes: Add RM_GetKeynameFromModuleKey
-
antirez authored
-
Oran Agra authored
This commit also fixes an uninitialized module struct member (that luckily never got released)
-
antirez authored
-
Salvatore Sanfilippo authored
Make module tests pass with valgrind, and fix a leak in diskless load
-
Salvatore Sanfilippo authored
Modules: improve tests Makefile.
-
Salvatore Sanfilippo authored
Module API for LatencyAddSample
-
Salvatore Sanfilippo authored
Fix some minor typos in comments
-
Salvatore Sanfilippo authored
fix comment typo in redis-cli.c
-
Salvatore Sanfilippo authored
Typo fix: kill -> still
-
Salvatore Sanfilippo authored
Introduce ReplyWithVerbatimString, ReplyWithEmptyArray, ReplyWithNull…
-
Salvatore Sanfilippo authored
Modules: make unloading module more safe
-
swilly22 authored
Introduce ReplyWithVerbatimString, ReplyWithEmptyArray, ReplyWithNullArray and ReplyWithEmptyString to redis module API
-
zhaozhao.zz authored
As we know if a module exports module-side data types, unload it is not allowed. This rule is the same with blocked clients in module, because we use background threads to implement module blocked clients, and it's not safe to unload a module if there are background threads running. So it's necessary to check if any blocked clients running in this module when unload it. Moreover, after that we can ensure that if no modules, then no module blocked clients even module unloaded. So, we can call moduleHandleBlockedClients only when we have installed modules.
-
- 25 Oct, 2019 1 commit
-
-
Carsten Strotmann authored
-