Salvatore Sanfilippo
e13b5ea614
Merge pull request #4200 from jeesyn/fix_typo
...
fix a typo
2017-11-28 18:44:11 +01:00
Salvatore Sanfilippo
b998e2035c
Merge pull request #4165 from zyegfryed/patch-1
...
Fix some typos
2017-11-28 18:43:45 +01:00
Salvatore Sanfilippo
5a836dc690
Merge pull request #4165 from zyegfryed/patch-1
...
Fix some typos
2017-11-28 18:43:45 +01:00
Salvatore Sanfilippo
923502a70b
Merge pull request #4166 from charpty/wip-redisclic-typo
...
redis-cli.c typo: helpe -> helper.
2017-11-28 18:41:51 +01:00
Salvatore Sanfilippo
c847a62be6
Merge pull request #4166 from charpty/wip-redisclic-typo
...
redis-cli.c typo: helpe -> helper.
2017-11-28 18:41:51 +01:00
Salvatore Sanfilippo
26826329f5
Merge pull request #4167 from charpty/wip-redisclic-typo2
...
redis-cli.c typo: Requets -> Requests.
2017-11-28 18:41:28 +01:00
Salvatore Sanfilippo
35b359cdeb
Merge pull request #4167 from charpty/wip-redisclic-typo2
...
redis-cli.c typo: Requets -> Requests.
2017-11-28 18:41:28 +01:00
Salvatore Sanfilippo
3508b9c440
Merge pull request #4170 from TehWebby/patch-2
...
Fix typo
2017-11-28 18:40:43 +01:00
Salvatore Sanfilippo
8f1d602a58
Merge pull request #4170 from TehWebby/patch-2
...
Fix typo
2017-11-28 18:40:43 +01:00
Salvatore Sanfilippo
4e55df4b5c
Merge pull request #4172 from TehWebby/patch-3
...
Fix typo
2017-11-28 18:40:02 +01:00
Salvatore Sanfilippo
4f5a9c99f8
Merge pull request #4172 from TehWebby/patch-3
...
Fix typo
2017-11-28 18:40:02 +01:00
Salvatore Sanfilippo
ad171f5ce0
Merge pull request #4176 from KrauseFx/patch-1
...
Update link to https and use inline link
2017-11-28 18:39:43 +01:00
Salvatore Sanfilippo
742d555754
Merge pull request #4176 from KrauseFx/patch-1
...
Update link to https and use inline link
2017-11-28 18:39:43 +01:00
antirez
851e9fc48b
t_hash.c: clarify calling two times the same function.
2017-11-28 18:39:00 +01:00
antirez
ff2b31e9a3
t_hash.c: clarify calling two times the same function.
2017-11-28 18:39:00 +01:00
antirez
aeee039a87
Merge branch 'unstable' of github.com:/antirez/redis into unstable
2017-11-28 18:27:35 +01:00
antirez
788710fa44
Merge branch 'unstable' of github.com:/antirez/redis into unstable
2017-11-28 18:27:35 +01:00
antirez
c44732ac58
adlist: fix listJoin() in the case the second list is empty.
...
See #4192 , the original PR removed lines of code that are actually
needed, so thanks to @chunqiulfq for reporting the problem, but merging
solution from @jeesyn after checking, together with @artix75, that the
logic covers all the cases.
2017-11-28 18:25:14 +01:00
antirez
0cd79860ec
adlist: fix listJoin() in the case the second list is empty.
...
See #4192 , the original PR removed lines of code that are actually
needed, so thanks to @chunqiulfq for reporting the problem, but merging
solution from @jeesyn after checking, together with @artix75, that the
logic covers all the cases.
2017-11-28 18:25:14 +01:00
Salvatore Sanfilippo
c3806f5b72
Merge pull request #4215 from lamby/correct-faield-spelling
...
Correct spelling of "faield".
2017-11-28 18:08:32 +01:00
Salvatore Sanfilippo
7bb1fe976b
Merge pull request #4215 from lamby/correct-faield-spelling
...
Correct spelling of "faield".
2017-11-28 18:08:32 +01:00
Salvatore Sanfilippo
a13106e001
Merge pull request #4374 from rouzier/patch-1
...
Fix file descriptor leak and error handling
2017-11-28 17:33:23 +01:00
Salvatore Sanfilippo
355ba680e6
Merge pull request #4374 from rouzier/patch-1
...
Fix file descriptor leak and error handling
2017-11-28 17:33:23 +01:00
Salvatore Sanfilippo
bf71b120f1
Merge pull request #4451 from devnexen/minor_build_fixes
...
Fix undefined behavior constant defined.
2017-11-28 17:23:48 +01:00
Salvatore Sanfilippo
1da0724a98
Merge pull request #4451 from devnexen/minor_build_fixes
...
Fix undefined behavior constant defined.
2017-11-28 17:23:48 +01:00
Itamar Haber
8c7f90e91e
Standardizes arity handling of DEBUG
2017-11-28 18:18:45 +02:00
Itamar Haber
5919c4d1e9
Standardizes arity handling of DEBUG
2017-11-28 18:18:45 +02:00
antirez
06ca9d6839
LFU: Fix LFUDecrAndReturn() to just decrement.
...
Splitting the popularity in half actually just needs decrementing the
counter because the counter is logarithmic.
2017-11-28 12:18:30 +01:00
antirez
ac58cbc764
LFU: Fix LFUDecrAndReturn() to just decrement.
...
Splitting the popularity in half actually just needs decrementing the
counter because the counter is logarithmic.
2017-11-28 12:18:30 +01:00
zhaozhao.zz
9f131c9a89
LFU: add hotkeys option to redis-cli
2017-11-27 18:39:29 +01:00
zhaozhao.zz
0a76b9bcd8
LFU: add hotkeys option to redis-cli
2017-11-27 18:39:29 +01:00
zhaozhao.zz
583c314725
LFU: do some changes about LFU to find hotkeys
...
Firstly, use access time to replace the decreas time of LFU.
For function LFUDecrAndReturn,
it should only try to get decremented counter,
not update LFU fields, we will update it in an explicit way.
And we will times halve the counter according to the times of
elapsed time than server.lfu_decay_time.
Everytime a key is accessed, we should update the LFU
including update access time, and increment the counter after
call function LFUDecrAndReturn.
If a key is overwritten, the LFU should be also updated.
Then we can use `OBJECT freq` command to get a key's frequence,
and LFUDecrAndReturn should be called in `OBJECT freq` command
in case of the key has not been accessed for a long time,
because we update the access time only when the key is read or
overwritten.
2017-11-27 18:39:22 +01:00
zhaozhao.zz
660f01011c
LFU: do some changes about LFU to find hotkeys
...
Firstly, use access time to replace the decreas time of LFU.
For function LFUDecrAndReturn,
it should only try to get decremented counter,
not update LFU fields, we will update it in an explicit way.
And we will times halve the counter according to the times of
elapsed time than server.lfu_decay_time.
Everytime a key is accessed, we should update the LFU
including update access time, and increment the counter after
call function LFUDecrAndReturn.
If a key is overwritten, the LFU should be also updated.
Then we can use `OBJECT freq` command to get a key's frequence,
and LFUDecrAndReturn should be called in `OBJECT freq` command
in case of the key has not been accessed for a long time,
because we update the access time only when the key is read or
overwritten.
2017-11-27 18:39:22 +01:00
zhaozhao.zz
53cea97204
LFU: change lfu* parameters to int
2017-11-27 18:38:55 +01:00
zhaozhao.zz
aef50770ba
LFU: change lfu* parameters to int
2017-11-27 18:38:55 +01:00
zhaozhao.zz
dfc42ec447
LFU: fix the missing of config get and rewrite
2017-11-27 18:38:33 +01:00
zhaozhao.zz
44c2e4cdbf
LFU: fix the missing of config get and rewrite
2017-11-27 18:38:33 +01:00
antirez
75fa7879e6
Improve OBJECT HELP descriptions.
...
See #4472 .
2017-11-27 18:09:08 +01:00
antirez
d0a716f709
Improve OBJECT HELP descriptions.
...
See #4472 .
2017-11-27 18:09:08 +01:00
antirez
b412c544fd
Fix entry command table entry for OBJECT for HELP option.
...
After #4472 the command may have just 2 arguments.
2017-11-27 13:16:07 +01:00
antirez
af514a1155
Fix entry command table entry for OBJECT for HELP option.
...
After #4472 the command may have just 2 arguments.
2017-11-27 13:16:07 +01:00
Salvatore Sanfilippo
29252391c4
Merge pull request #4472 from itamarhaber/object_patch
...
A minor fix and `help` subcommand for `OBJECT`
2017-11-27 12:41:02 +01:00
Salvatore Sanfilippo
922fc6bf1d
Merge pull request #4472 from itamarhaber/object_patch
...
A minor fix and `help` subcommand for `OBJECT`
2017-11-27 12:41:02 +01:00
Itamar Haber
1c08220022
Adds -u <uri> option to redis-cli.
2017-11-27 11:34:11 +01:00
Itamar Haber
241526af3d
Adds -u <uri> option to redis-cli.
2017-11-27 11:34:11 +01:00
Itamar Haber
02d38f6b51
Adds OBJECT help
2017-11-24 19:59:05 +02:00
Itamar Haber
4a9fb02aca
Adds OBJECT help
2017-11-24 19:59:05 +02:00
Itamar Haber
b28fb3d753
Prevents OBJECT freq
with noeviction
...
When maxmemory is set to noeviction, idletime is implicitly kept. This renders access frequency nonsensical.
2017-11-24 19:58:37 +02:00
Itamar Haber
21479f9ebc
Prevents OBJECT freq
with noeviction
...
When maxmemory is set to noeviction, idletime is implicitly kept. This renders access frequency nonsensical.
2017-11-24 19:58:37 +02:00
antirez
dc2df135b3
Test: regression test for latency expire events logging bug.
...
Regression for #4452 .
2017-11-24 18:33:31 +01:00