antirez
|
85dd2f3ad2
|
log file parsing code improved a bit
|
2009-04-27 18:03:34 +02:00 |
|
antirez
|
be2bb6b07e
|
bgsave_in_progress field in INFO output
|
2009-04-27 17:52:04 +02:00 |
|
antirez
|
d68ed1201a
|
INCRBY/DECRBY now support 64bit increments, with tests
|
2009-04-27 17:50:26 +02:00 |
|
antirez
|
f5785ae997
|
RANDOMKEY regression test added
|
2009-04-23 18:48:11 +02:00 |
|
antirez
|
6f864e6266
|
dictGetRandomKey bug fixed, RANDOMKEY will not block the server anymore
|
2009-04-23 18:46:11 +02:00 |
|
antirez
|
ca37e9cde8
|
FLUSHALL/FLUSHDB no longer sync on disk. Just increment the dirty counter by the number of elements removed, that will probably trigger a background saving operation
|
2009-04-22 01:44:48 +02:00 |
|
antirez
|
975a5b6f98
|
forgot to comment testing code in PHP lib. Now it is ok
|
2009-04-21 19:47:12 +02:00 |
|
antirez
|
8d03032a83
|
PHP client ported to PHP5 and fixed
|
2009-04-21 19:43:02 +02:00 |
|
antirez
|
3c910136c1
|
doc update
|
2009-04-21 00:33:34 +02:00 |
|
antirez
|
6208b3a776
|
Non blocking replication (finally!). C-side linked lists API improved.
|
2009-04-20 23:51:51 +02:00 |
|
antirez
|
40d224a9e3
|
SUNION, SUNIONSTORE, Initial work on non blocking replication
|
2009-04-19 10:02:36 +02:00 |
|
antirez
|
6bea3d5f58
|
Redis 0.091 released
|
2009-04-10 13:49:50 +02:00 |
|
antirez
|
5faa6025f5
|
SINTER/SINTERSTORE/SLEMENTS fix: misisng keys are now not errors, but just like empty sets
|
2009-04-10 13:43:41 +02:00 |
|
antirez
|
cc1db901e9
|
doc changes
|
2009-04-09 08:44:55 +02:00 |
|
antirez
|
290deb8b8c
|
TODO changes, minor change to default redis.conf
|
2009-04-08 13:46:26 +02:00 |
|
antirez
|
7f4e28e750
|
html doc updated
|
2009-04-08 13:42:34 +02:00 |
|
antirez
|
0bd06e524a
|
library clients update scripts
|
2009-04-08 13:26:36 +02:00 |
|
antirez
|
9495122b18
|
Ruby client updated
|
2009-04-08 13:20:03 +02:00 |
|
antirez
|
928394cd12
|
Lua client updated
|
2009-04-08 13:17:55 +02:00 |
|
antirez
|
8b382972b0
|
Changelog updated
|
2009-04-08 12:25:15 +02:00 |
|
antirez
|
575acbf1f7
|
Merge git://github.com/ludoo/redis
|
2009-04-08 12:13:56 +02:00 |
|
Ludovico Magnocavallo
|
9a2944ace2
|
add expire command to the php lib
|
2009-04-08 12:09:56 +02:00 |
|
Ludovico Magnocavallo
|
bb7dcc1e51
|
fix decode bug, add flush and info commands
|
2009-04-08 12:08:05 +02:00 |
|
Bob Potter
|
5a6e8b1daa
|
Rearrange redisObject struct to reduce memory usage in 64bit environments (as recommended http://groups.google.com/group/redis-db/msg/68f5a743f8f4e287)
|
2009-04-07 18:40:33 -05:00 |
|
Bob Potter
|
27dd15268c
|
ruby19 compat: use each_line on string
|
2009-04-07 18:36:23 -05:00 |
|
Bob Potter
|
5fba9f717b
|
64bit fixes for usedmemory
|
2009-04-07 18:33:44 -05:00 |
|
antirez
|
ce7bef0795
|
RANDOMKEY issue 26 fixed, generic test + regression added
|
2009-04-08 00:59:53 +02:00 |
|
antirez
|
05557f6de7
|
Don't accept SAVE if BGSAVE is in progress
|
2009-04-06 10:29:36 +02:00 |
|
Ludovico Magnocavallo
|
ab48d029d9
|
add expire command to the python lib
|
2009-04-06 10:19:26 +02:00 |
|
antirez
|
bb32ede52e
|
persistent EXPIRE
|
2009-04-03 11:07:37 +02:00 |
|
antirez
|
0c66a4713a
|
dirty increment was missing in two points. TODO updated
|
2009-04-03 10:04:51 +02:00 |
|
antirez
|
7a596b2f0f
|
LZF configured to initalize the HT in order to be determinsitic and play well with valgrind
|
2009-04-02 23:00:27 +02:00 |
|
Ludovico Magnocavallo
|
491d908b0a
|
fix select test
|
2009-04-02 17:34:42 +02:00 |
|
Ludovico Magnocavallo
|
39c8c0f22d
|
fix trailing cr+nl in values
|
2009-04-02 17:33:04 +02:00 |
|
antirez
|
88e859984a
|
compression/decompression of large values on disk now working
|
2009-04-02 17:10:02 +02:00 |
|
antirez
|
40c32c3e49
|
disable LZF compression since it's not able to load the DB for now, the load part is missing
|
2009-04-02 10:02:06 +02:00 |
|
antirez
|
d07519372b
|
new LZF files added
|
2009-04-02 10:00:49 +02:00 |
|
antirez
|
2e77c2ee72
|
Fixed issue 23 about AUTH
|
2009-04-02 09:57:06 +02:00 |
|
antirez
|
774e304780
|
Issue 22 fixed
|
2009-04-02 09:54:45 +02:00 |
|
antirez
|
94754ccc3c
|
non-lazy expired keys purging implemented
|
2009-04-01 20:40:00 +02:00 |
|
antirez
|
98c541c517
|
fastlz dependence removed
|
2009-04-01 14:36:29 +02:00 |
|
antirez
|
3305306f09
|
Initial implementation of EXPIRE
|
2009-04-01 13:22:35 +02:00 |
|
antirez
|
300827b60d
|
TODO updated
|
2009-03-30 16:27:35 +02:00 |
|
antirez
|
378fd42197
|
changelog added
|
2009-03-30 12:13:43 +02:00 |
|
antirez
|
8de4907a86
|
redis-sha1 utility added
|
2009-03-28 11:50:27 +01:00 |
|
antirez
|
e3566d4b46
|
Integer encoding implemented in dump file. Doc updated
|
2009-03-28 10:58:19 +01:00 |
|
antirez
|
e9a9afd35e
|
feature macros defined to play well with C99
|
2009-03-27 22:01:04 +01:00 |
|
antirez
|
23d4709dfb
|
feature macros defined to play well with C99
|
2009-03-27 22:00:27 +01:00 |
|
antirez
|
53f8c2c71e
|
now Redis is C99-ok
|
2009-03-27 21:37:57 +01:00 |
|
antirez
|
17be1a4a17
|
IMPORTANT FIX: new dump format implementation was broken. Now it's ok but tests for the 32-bit case values are needed
|
2009-03-27 21:27:42 +01:00 |
|