antirez
|
4ab8695d53
|
New script timeout semantics and SCRIPT KILL implemented. SHUTDOWN NOSAVE and SHUTDOWN SAVE implemented.
|
2011-11-18 14:10:48 +01:00 |
|
antirez
|
12d293ca6e
|
high resolution expires API modified to use separated commands. AOF transation to PEXPIREAT of all the expire-style commands fixed.
|
2011-11-10 17:52:02 +01:00 |
|
antirez
|
52d46855d9
|
TTL, EXPIRE and EXPIREAT now support the milliseconds input/output form
|
2011-11-09 18:05:35 +01:00 |
|
antirez
|
7dcc10b65e
|
Initial support for key expire times with millisecond resolution. RDB version is now 3, new opcoded added for high resolution times. Redis is still able to correctly load RDB version 2. Tests passing but still a work in progress. API to specify milliseconds expires still missing, but the precision of normal expires is now already improved and working.
|
2011-11-09 16:51:19 +01:00 |
|
antirez
|
c0ba9ebe13
|
dict.c API names modified to be more coincise and consistent.
|
2011-11-08 17:07:55 +01:00 |
|
antirez
|
13cd1515f9
|
FLUSHALL now prevents rdbSave() from resetting the dirty counter, so that the command will get replicated and put inside the AOF. This fixes issue #142
|
2011-10-17 10:31:47 +02:00 |
|
antirez
|
42a6fcd6c5
|
FLUSHALL will only perform a blocking SAVE if RDB persistence is configured.
|
2011-10-17 10:31:34 +02:00 |
|
antirez
|
4ab18a3331
|
Fix for bug #128 about the RENAME command.
|
2011-10-10 15:21:19 +02:00 |
|
antirez
|
eab0e26e03
|
replaced redisAssert() with redisAssertWithInfo() in a shitload of places.
|
2011-10-04 18:43:03 +02:00 |
|
antirez
|
812ecc8b10
|
don't process EXPIRE with negative TTL or EXPIREAT with time in the past if we are a slave too (see http://groups.google.com/group/redis-db/browse_thread/thread/5a931fefb88b16d5). Also propagate it as DEL.
|
2011-07-07 16:24:37 +02:00 |
|
Hampus Wessman
|
040b0ade7d
|
Don't expire keys while loading AOF.
They will be expired (and a DEL will be logged) after the loading is done
instead.
|
2011-07-07 16:08:30 +02:00 |
|
antirez
|
c9d0c3623a
|
diskstore removed
|
2011-06-25 12:22:03 +02:00 |
|
antirez
|
f85cd526c1
|
DB API refactoring. The changes were designed together with Pieter Noordhuis.
|
2011-06-20 16:42:16 +02:00 |
|
antirez
|
a7b058dae6
|
Fixed semantics of CLUSTER SETSLOT, SELECT now only denied in cluster mode if selected DB is not 0 so that MIGRATE still works well.
|
2011-05-05 18:10:02 +02:00 |
|
antirez
|
484354ff95
|
CLUSTER GETKEYSINSLOT implemented
|
2011-04-29 16:17:58 +02:00 |
|
antirez
|
c772d9c6e7
|
take a hashslot -> keys index, will be used for cluster rehasing
|
2011-04-28 19:00:33 +02:00 |
|
antirez
|
ecc9109434
|
Cluster branch merged to unstable.
|
2011-03-29 17:51:15 +02:00 |
|
antirez
|
4b61ca460c
|
fixed a bug in RENAME getKeys() function
|
2011-03-28 18:46:22 +02:00 |
|
antirez
|
6e1b9b58ec
|
bug fixed in zunionstore specific getKeys() implementation
|
2011-03-28 18:21:06 +02:00 |
|
antirez
|
b4b5144694
|
Fixes to the new preloading / key discovery APIs
|
2011-03-28 17:54:42 +02:00 |
|
antirez
|
9791f0f8ce
|
new preloading implemented, still EXEC not handled correctly, everything to test
|
2011-03-23 18:09:17 +01:00 |
|
antirez
|
15db4aa006
|
TTL command fixed to work reliably with diskstore
|
2011-03-04 15:49:01 +01:00 |
|
antirez
|
3a73be7524
|
master-slave replication fixed, it was not listing any key using KEYS command in the slave.
|
2011-01-14 09:53:57 +01:00 |
|
antirez
|
69bfffb4a7
|
test adapted to run with diskstore, and a few bugs fixed
|
2011-01-09 18:25:34 +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 |
|
antirez
|
5ab7bbfc27
|
fixed logging level for debugging message
|
2011-01-03 17:40:10 +01:00 |
|
antirez
|
5d46e370b7
|
diskstore more fixes
|
2011-01-03 17:18:37 +01:00 |
|
antirez
|
c15a3887e0
|
diskstore bug fixing and negative cache proper implementation
|
2011-01-03 10:47:39 +01:00 |
|
antirez
|
120b9ba8f8
|
FLUSHALL / FLUSHDB for diskstore implemented
|
2011-01-03 10:17:39 +01:00 |
|
antirez
|
4942145d72
|
fixed a bug in diskstore
|
2011-01-02 21:39:17 +01:00 |
|
antirez
|
9a3730289f
|
blocking load fixed with the new design
|
2011-01-01 21:39:48 +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
|
aa81e4d5f4
|
minor changes to doc and comments
|
2010-12-31 18:23:31 +01:00 |
|
antirez
|
d934e1e85b
|
negative caching implemented
|
2010-12-31 17:32:59 +01:00 |
|
antirez
|
a440ecf0d3
|
major bug and a dead lock fixed
|
2010-12-31 14:30:24 +01:00 |
|
antirez
|
ad01a25553
|
blocking load of keys on lookup -- nor tested, nor finished
|
2010-12-31 00:18:17 +01:00 |
|
antirez
|
4e941ecacb
|
short but important comment added
|
2010-12-30 19:20:23 +01:00 |
|
antirez
|
3122229228
|
handled DEL command as a special optimized case for disk store
|
2010-12-30 19:16:59 +01:00 |
|
antirez
|
8d51fb6a80
|
diskstore cache bug fixing
|
2010-12-30 18:37:46 +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
|
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
|
16d778780e
|
a lot of code reworked/removed to implement object caching
|
2010-12-28 18:06:40 +01:00 |
|
antirez
|
1b1f47c915
|
command lookup process turned into a much more flexible and probably faster hash table
|
2010-11-03 11:23:59 +01:00 |
|
antirez
|
7d0966a6b7
|
Do not update the LRU info on key lookup when we have a saving child. With this trivial change the additional memory used while saving with a background child in presence of many read operations is zero.
|
2010-11-02 18:59:48 +01:00 |
|
antirez
|
53eeeaff08
|
added keyspace_hits and keyspace_misses fields in INFO output
|
2010-10-15 12:19:21 +02:00 |
|
antirez
|
670bf2fd36
|
Don't increment dirty on expireIfNeeded() as natural expires are not considered database changes. This will avoid useless read-only commands in the AOF file as a result of, for instance, a GET operation triggering an expirIfNeeded() call resulting in an expired key removed.
|
2010-10-15 11:29:03 +02:00 |
|
antirez
|
ef59a8bc9e
|
Object approximated LRU algorithm enhanced / fixed / refactored. This is used for the VM currently but will soon be used for maxmemory expiring.
|
2010-10-14 13:52:58 +02:00 |
|
antirez
|
144a5e72f2
|
fixed an alignment problem with time_t is 32 bit, long is 64 bit, and arch is sparc or any other where unaligned accesses will result to sigbus
|
2010-10-07 16:21:35 +02:00 |
|
antirez
|
89f9f83769
|
Merge remote branch 'pietern/networking-perf'
|
2010-09-16 11:38:40 +02:00 |
|
antirez
|
da14590bd9
|
Fix re-enabled again, I forgot to check if VM was enabled before calling handleClientsBlockedOnSwappedKey()
|
2010-09-08 13:47:28 +02:00 |
|