antirez
|
5d02b00f56
|
command table refactoring to make it simpler adding new flags
|
2011-09-26 15:40:39 +02:00 |
|
Salvatore Sanfilippo
|
ac1f6fd07a
|
Merge pull request #78 from vambo/patch-1
Corrected typo in documentation for R_Zero, R_PosInf, R_NegInf, R_Nan;
|
2011-09-20 02:00:58 -07:00 |
|
Salvatore Sanfilippo
|
5bae401107
|
Merge pull request #79 from annulen/mac_ppc
Fixed compilation on Mac/PPC
|
2011-09-20 01:58:55 -07:00 |
|
antirez
|
eef17490d4
|
Include port number in error when can't bind lisetning port on startup.
|
2011-09-20 10:48:21 +02:00 |
|
antirez
|
db3c2a4fb4
|
postpone the AOF fsync if policy is everysec and there is a background fsync already going.
|
2011-09-16 12:35:12 +02:00 |
|
antirez
|
7feb90fa37
|
enable zmalloc thread safety support now that we have the bio.c background thread.
|
2011-09-14 19:09:48 +02:00 |
|
antirez
|
6468a6faad
|
Don't replicate/AOF SAVE
|
2011-09-14 13:09:25 +02:00 |
|
antirez
|
b1c892f3f6
|
test background close operation removed
|
2011-09-13 16:57:18 +02:00 |
|
antirez
|
b147cb9e1a
|
debug message removed
|
2011-09-13 16:53:33 +02:00 |
|
antirez
|
8f61a72fa8
|
add background jobs initialization to Redis main init function
|
2011-09-13 16:10:26 +02:00 |
|
antirez
|
4f06867afe
|
added a newline for code readability
|
2011-09-13 12:21:54 +02:00 |
|
Konstantin Tokarev
|
ef9444e0d2
|
Fixed compilation on Mac/PPC
Applied patch from Issue 119 provided by
pahowes@gmail.com
|
2011-09-01 22:16:20 +04:00 |
|
vambo
|
c74b7c7730
|
Corrected typo in documentation for R_Zero, R_PosInf, R_NegInf, R_Nan;
|
2011-08-26 21:40:18 +03:00 |
|
antirez
|
11aaf52313
|
Auto rewrite integer overflow fixed. Thanks to Gaurav for finding it (see issue 602 on google code), and Pieter Noordhuis for tracing it.
|
2011-08-09 11:46:18 +02:00 |
|
antirez
|
80e87a461a
|
Close the listening sockets. Apparently this allows faster restarts.
|
2011-07-22 12:11:40 +02:00 |
|
antirez
|
adae85cdae
|
prepareForShutdown() fixed for correctness regarding what to do with AOF and RDB persistence on exit.
|
2011-07-22 11:52:21 +02:00 |
|
antirez
|
4dd444bb4a
|
Replicate EVALSHA as EVAL taking a dictionary of sha1 -> script source code.
|
2011-07-13 15:38:03 +02:00 |
|
antirez
|
0681c5ad84
|
master branch merged into scripting.
|
2011-07-12 12:39:16 +02:00 |
|
antirez
|
09e2d9eeba
|
Take a pointer to the relevant entry of the command table in the client structure. This is generally a more sounding design, simplifies a few functions prototype, and as a side effect fixes a bug related to the conversion of EXPIRE -1 to DEL: before of this fix Redis tried to convert it into an EXPIREAT in the AOF code, regardless of our rewrite of the command.
|
2011-07-08 12:59:30 +02:00 |
|
antirez
|
5a9dd97c7c
|
childrens -> children in INFO output field names. This is a backward incompatible change, but really a minimal one.
|
2011-07-02 10:52:28 +02:00 |
|
antirez
|
6504634019
|
no more allocation stats info in INFO, useless now that we have jemalloc.
|
2011-07-02 10:31:16 +02:00 |
|
antirez
|
daa70b1798
|
First implementation of the slow log feature
|
2011-06-30 13:27:32 +02:00 |
|
antirez
|
994ed2bc55
|
unstable merge conflicts resolved
|
2011-06-25 12:29:24 +02:00 |
|
antirez
|
c9d0c3623a
|
diskstore removed
|
2011-06-25 12:22:03 +02:00 |
|
antirez
|
fec5a664f8
|
Fixed INFO implementation to use the new allocator name define
|
2011-06-20 11:54:08 +02:00 |
|
antirez
|
07486df6fe
|
new INFO filed master_link_down_since_seconds
|
2011-06-17 16:16:46 +02:00 |
|
antirez
|
0d1650f8a9
|
Updated to unstable
|
2011-06-14 18:06:39 +02:00 |
|
Hampus Wessman
|
0b17517c7c
|
Fix automatic rewrite starting too early.
Slight adjustment in growth calculation.
|
2011-06-12 07:27:01 +02:00 |
|
antirez
|
19b46c9a09
|
Make sure an automatic rewrite only gets triggered when no other child is in execution.
|
2011-06-10 15:15:29 +02:00 |
|
antirez
|
d630abcdaf
|
Added new INFO fields related to the new AOF auto rewrite feature
|
2011-06-10 14:52:47 +02:00 |
|
antirez
|
4f948300bc
|
Fixed bug in AOF rewrite not working because of integer overflow
|
2011-06-10 14:47:12 +02:00 |
|
antirez
|
73b9e8aedf
|
debugging printf removed
|
2011-06-10 14:44:06 +02:00 |
|
antirez
|
4ff34b6adb
|
AOF auto rewrite percentage option parsing fixed
|
2011-06-10 14:43:11 +02:00 |
|
antirez
|
e3d27a7261
|
Avoid division by zero issues in the automatically triggered AOF rewrite feature.
|
2011-06-10 14:25:27 +02:00 |
|
antirez
|
b333e23997
|
automatic AOF rewrite first implementation. Still to be tested.
|
2011-06-10 12:39:23 +02:00 |
|
antirez
|
3f7b2b1f30
|
Variadic ZREM
|
2011-05-31 20:15:18 +02:00 |
|
antirez
|
ef231a7c56
|
Variadic ZADD
|
2011-05-31 17:47:34 +02:00 |
|
antirez
|
615e414c5d
|
INFO now contains the time (in usecs) needed to fork() in order to persist. The info is available in the stats section of INFO.
|
2011-05-29 15:17:29 +02:00 |
|
antirez
|
7229d60d03
|
EVALSHA implemented
|
2011-05-25 12:32:49 +02:00 |
|
antirez
|
eeffcf380f
|
Lua scripts max execution time
|
2011-05-25 12:32:48 +02:00 |
|
antirez
|
8c3402dffa
|
Lua memory usage in INFO
|
2011-05-25 12:32:48 +02:00 |
|
antirez
|
497fc8775f
|
Eval command table fixed to return the keys arguments of the command. We use zunionInterGetKeys() as it ZUNION/ZINTER have exactly the same semantic with a prefixed number of keys followed by key names.
|
2011-05-25 12:32:47 +02:00 |
|
antirez
|
7585836e6e
|
Lua function creation on EVAL, basic Lua return type to Redis protocol convertion done.
|
2011-05-25 12:32:43 +02:00 |
|
Pieter Noordhuis
|
890a2ed989
|
Configurable synchronous I/O timeout
|
2011-05-22 12:58:18 +02:00 |
|
Pieter Noordhuis
|
32f99c5128
|
Show memory allocator in INFO output
|
2011-05-05 16:32:18 +02:00 |
|
antirez
|
eda827f8b7
|
cluster import/export of hash slots implemented in the query redirection engine
|
2011-05-05 11:13:21 +02:00 |
|
antirez
|
7e79dd3f4c
|
peak fragmentation ratio removed as it is a confusing field for users and trivial to compute at hand now that there is peak memory information in INFO output
|
2011-04-21 16:56:31 +02:00 |
|
antirez
|
3cd12b5687
|
CLIENT LIST implemented
|
2011-04-21 15:38:02 +02:00 |
|
antirez
|
17b24ff30d
|
save peak memory usage as statistic and show it in INFO. Also a new INFO field was added showing the fragmentation ratio using the peak memory info.
|
2011-04-21 10:49:52 +02:00 |
|
antirez
|
b3a96d454e
|
Variadic SREM
|
2011-04-19 17:37:03 +02:00 |
|
antirez
|
64a13a36e6
|
variadic HDEL with tests
|
2011-04-19 17:07:55 +02:00 |
|
antirez
|
22f294d24a
|
variadic SADD
|
2011-04-15 18:08:32 +02:00 |
|
antirez
|
fb2feae599
|
variadic LPUSH/RPUSH
|
2011-04-15 16:35:27 +02:00 |
|
antirez
|
7c0e1b53c4
|
Merge remote branch 'pietern/unstable-zset' into unstable
|
2011-04-14 13:31:14 +02:00 |
|
antirez
|
996d503d1a
|
ASCII ART FTW
|
2011-04-13 10:58:21 +02:00 |
|
Salvatore Sanfilippo
|
1c708b25ee
|
added minimal cluster section in INFO output. This is only useful to check if the instance is or not configured as a cluster node, all the other informations are accessible using the CLUSTER command.
|
2011-04-11 16:40:37 +02:00 |
|
Pieter Noordhuis
|
7d8c555e92
|
Merge branch 'unstable' into unstable-zset
Conflicts:
src/object.c
|
2011-04-06 16:15:01 +02:00 |
|
antirez
|
ece74202bb
|
OBJECT command implemented
|
2011-04-06 12:19:45 +02:00 |
|
antirez
|
626f6b2d64
|
DUMP implemented, RESTORE and MIGRATE fixed. Use zcalloc() instead of zmalloc()+memset() in sds.c when a new string is created with NULL initialization pointer.
|
2011-04-01 18:59:28 +02:00 |
|
antirez
|
ef21ab960e
|
centralized cluster config file name. Assigned slots in CLUSTER NODES output and in cluster config file.
|
2011-03-30 17:41:13 +02:00 |
|
antirez
|
ecc9109434
|
Cluster branch merged to unstable.
|
2011-03-29 17:51:15 +02:00 |
|
antirez
|
9791f0f8ce
|
new preloading implemented, still EXEC not handled correctly, everything to test
|
2011-03-23 18:09:17 +01:00 |
|
antirez
|
03af999cb0
|
command table altered for the new API to get position of keys arguments in commands
|
2011-03-22 19:36:09 +01:00 |
|
Pieter Noordhuis
|
3ea204e103
|
Configurable thresholds for encoded sorted sets
|
2011-03-09 14:01:57 +01:00 |
|
Pieter Noordhuis
|
633a941028
|
Save RDB on SIGTERM (see issue #471)
|
2011-03-06 17:49:40 +01:00 |
|
antirez
|
4d60dea853
|
RDB/AOF loading times logged with millisecond precision
|
2011-02-28 15:31:54 +01:00 |
|
antirez
|
900ab8fc7a
|
more disk store fields in INFO
|
2011-02-25 10:59:57 +01:00 |
|
antirez
|
29920dceb8
|
conflict resolved in cherry pick
|
2011-02-22 00:03:03 +01:00 |
|
antirez
|
9c104c6886
|
introduced a new logging function for big messages
|
2011-02-09 10:10:35 +01:00 |
|
antirez
|
a53b4c2409
|
Fix for the previous port 0 patch, thanks to Pieter for noticing the error
|
2011-02-07 13:43:29 +01:00 |
|
antirez
|
68d6345ddf
|
If port zero is specified, Redis will not listen for TCP connections
|
2011-02-07 12:52:01 +01:00 |
|
antirez
|
452229b6fb
|
propagate key eviction to slaves and AOF, like for expires, so that replicas and AOFs are always consistent even in maxmemory mode.
|
2011-01-27 16:52:37 +01:00 |
|
antirez
|
d7ed7fd2fc
|
INFO commandstats section reset with config resetstat, a new microseconds per call field, and a few other minor things
|
2011-01-24 10:56:06 +01:00 |
|
antirez
|
0d808ef275
|
Now INFO outputs the "INFO default" output if no argument is passed. Also added counts of calls for every command, thanks to an idea by Mike Shaver
|
2011-01-23 22:14:15 +01:00 |
|
antirez
|
1b085c9f48
|
INFO output refactoring. Now "INFO section" will report only the specified section
|
2011-01-23 16:41:07 +01:00 |
|
antirez
|
d9cb288c9e
|
profiling information in INFO
|
2011-01-23 11:46:34 +01:00 |
|
antirez
|
89a1433e69
|
Fixed issue #435 and at the same time introduced explicit ping in the master-slave channel that will detect a blocked master or a broken even if apparently connected TCP link.
|
2011-01-20 13:18:23 +01:00 |
|
Pieter Noordhuis
|
3bcffcbe5b
|
Remove client from list of unblocked clients when it is free'd
|
2011-01-17 10:04:13 +01:00 |
|
antirez
|
7a1fd61e3d
|
implemented two new INFO fields showing the size of clients max input and output buffers.
|
2011-01-14 10:20:02 +01:00 |
|
antirez
|
a5062bbab0
|
fixed bgsave_in_progress in INFO when BGSAVEing with diskstore enabled, don't DEBUG FLUSHCACHE when bgsave is in progress.
|
2011-01-09 19:25:34 +01:00 |
|
antirez
|
67a1810b32
|
allocation stats in INFO
|
2011-01-09 15:56:50 +01:00 |
|
antirez
|
f03fe802b7
|
diskstore BGSAVE should work now
|
2011-01-07 23:41:00 +01:00 |
|
antirez
|
5b8ce85378
|
more work towards diskstore bgsave
|
2011-01-07 19:31:42 +01:00 |
|
antirez
|
36c17a53b6
|
source reshaped a bit to play well with a bgsaving thread, still work to do, does not compile.
|
2011-01-07 18:15:14 +01:00 |
|
Pieter Noordhuis
|
a510cb0c03
|
Remove glueoutputbuf option and broken code
|
2011-01-05 10:39:41 +01:00 |
|
antirez
|
6eaad66373
|
Merge branch 'master' into unstable
|
2011-01-04 19:07:15 +01:00 |
|
antirez
|
d2033feb5c
|
fixed cache-flush-delay configuration parsing
|
2011-01-02 22:27:26 +01:00 |
|
antirez
|
3be00d7ed6
|
implemented a different approach to IO scheduling, so object->storage is no longer used, instead there is a queue and hash table of IO tasks to process, and it is always possible to know what are the scheduled and acrtive IO operations against every single key.
|
2011-01-01 21:35:56 +01:00 |
|
antirez
|
d934e1e85b
|
negative caching implemented
|
2010-12-31 17:32:59 +01:00 |
|
antirez
|
82ef6ebf73
|
added cache-flush-delay configuration directive. Don't BGSAVE when using diskstore
|
2010-12-30 17:53:28 +01:00 |
|
antirez
|
4ab988238f
|
more work done for diskstore without trying to compile, more work needed to build again.
|
2010-12-30 16:41:36 +01:00 |
|
antirez
|
1609a1c42d
|
fixed a few bugs in DS store, now it's somewhat about able to reply to 'GET foo' with a bogus value.
|
2010-12-30 15:55:24 +01:00 |
|
antirez
|
67b0b41c87
|
disk store logged messages improved
|
2010-12-29 23:08:18 +01:00 |
|
antirez
|
ddbc81af33
|
diskstore directory structure creation
|
2010-12-29 23:00:00 +01:00 |
|
antirez
|
f63f0928c3
|
cron part of disk store object cache implemented. Objects are pushed as IO jobs if needed, so that the IO thread will process them.
|
2010-12-29 22:18:20 +01:00 |
|
antirez
|
cea8c5cd75
|
touched key for WATCH refactored into a more general thing that can be used also for the cache system. Some more changes towards diskstore working.
|
2010-12-29 19:39:42 +01:00 |
|
antirez
|
f2da3a620c
|
more work converting vm into object cache
|
2010-12-28 20:03:21 +01:00 |
|
antirez
|
697af434fb
|
initial changes needed to turn the current VM code into a cache system. Tons of work to do still.
|
2010-12-28 15:20:20 +01:00 |
|
Pieter Noordhuis
|
8ce39260a4
|
Fix compiler warnings on Solaris
|
2010-12-23 11:26:11 +00:00 |
|
antirez
|
f21779ff36
|
removed some dead code, added evicted keys counter separated from expired keys.
|
2010-12-19 15:15:08 +01:00 |
|