- 19 Nov, 2019 28 commits
-
-
Oran Agra authored
there were two lssues, one is taht BGREWRITEAOF failed since the initial one was still in progress the solution for this one is to enable appendonly from the server startup so there's no initial aofrw. the other problem was 0 loading progress events, theory is that on some platforms a sleep of 1 will cause a much greater delay due to the context switch, but on other platform it doesn't. in theory a sleep of 100 micro for 1k keys whould take 100ms, and with hz of 500 we should be gettering 50 events (one every 2ms). in practise it doesn't work like that, so trying to find a sleep that would be long enough but still not cause the test to take too long.
-
Salvatore Sanfilippo authored
Module API: add support for long double conversions and replies
-
Salvatore Sanfilippo authored
-
Salvatore Sanfilippo authored
rename RN_SetLRUOrLFU -> RM_SetLRU and RN_SetLFU
-
antirez authored
-
Salvatore Sanfilippo authored
Redis sentinel kill pubsub client connections as well
-
antirez authored
-
Salvatore Sanfilippo authored
fix leak in module api rdb test
-
antirez authored
-
Salvatore Sanfilippo authored
Update adlist.h
-
Salvatore Sanfilippo authored
Improve RM_Call() errno classification.
-
Salvatore Sanfilippo authored
aof: fix assignment for aof_fsync_offset
-
Salvatore Sanfilippo authored
test infra: improve prints on failed assertions
-
antirez authored
-
antirez authored
-
Salvatore Sanfilippo authored
expires & blocking: handle ready keys as call()
-
Yossi Gottlieb authored
RM_Call() will now use EBADF and ENONET in addition to EINVAL in order to provide more information about errors (i.e. when return value is NULL).
-
antirez authored
-
Salvatore Sanfilippo authored
Added scan implementation to module api.
-
Salvatore Sanfilippo authored
-
antirez authored
-
Salvatore Sanfilippo authored
module docs, missing LOADING flag
-
Salvatore Sanfilippo authored
Add RM_ModuleTypeReplaceValue.
-
Salvatore Sanfilippo authored
Redis Module API calls to allow re-use of data type RDB save/load.
-
Salvatore Sanfilippo authored
Slightly more efficient RM_ReplyWithEmptyString
-
Salvatore Sanfilippo authored
XADD with ID 0-0 stores an empty key
-
Salvatore Sanfilippo authored
Update mkreleasehdr.sh
-
喜欢兰花山丘 authored
fix date +%s errata
-
- 18 Nov, 2019 5 commits
- 15 Nov, 2019 2 commits
- 14 Nov, 2019 5 commits
-
-
antirez authored
-
antirez authored
-
Oran Agra authored
trimming talk about RESP protocol from API docs (should be independent to that anyway)
-
Oran Agra authored
-
Yossi Gottlieb authored
This is a light-weight replace function, useful for use cases such as realloc()ing an existing value, etc. Using RM_ModuleTypeSetValue() in such cases is wasteful and complex as it attempts to delete the old value, call its destructor, etc.
-