9a3a84bfdf
Script to install the server in Ubuntu/Debian added to 2.4 as well.
2011-10-23 11:49:58 +02:00
b6fe152b83
Fix to the previous fix for issue #145 , make sure to return only after the event was unregistered.
2011-10-18 17:12:16 +02:00
1270a13667
Fixed a small memory leak I found with valgrind
2011-10-18 14:13:47 +02:00
98f5abb6e3
Return from syncWithMaster() ASAP if the event fired but the instance is no longer a slave. This should fix Issue #145 .
2011-10-18 11:09:32 +02:00
ab648d973d
2.4.1 release notes.
2.4.1
2011-10-17 10:46:00 +02:00
5ab72bedb7
version bumped to 2.4.1
2011-10-17 10:43:02 +02:00
9a83d13fb5
revert version bumping to 2.4.1, put in the previous commit for an error.
2011-10-17 10:42:47 +02:00
6662806a26
Regression test for issue #142 added
2011-10-17 10:40:11 +02:00
6e3f1a9e47
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:28:57 +02:00
d12f26c231
FLUSHALL will only perform a blocking SAVE if RDB persistence is configured.
2011-10-17 10:25:35 +02:00
a502f48320
2.4.0 Release notes.
2.4.0
2011-10-14 17:54:25 +02:00
0c71939c05
Version bumped to 2.4.0
2011-10-14 17:49:20 +02:00
a4f46f211c
Exit with Fatal error at startup if the RDB file signature or version is wrong.
...
Ref: issue #103
2011-10-14 17:04:24 +02:00
8185c2e9f1
redis-check-dump: RDB version 2 now supported.
2011-10-14 16:52:11 +02:00
71bb31bf16
More informative error when DEBUG RELOAD fails.
2011-10-14 14:30:41 +02:00
c7d23f3ed1
Fix for issue #132 . Now AUTH raises an error if no server password is configured.
2011-10-10 22:22:27 +02:00
09cefcfbb3
Added a config directive for a Unix socket mask
...
Added a configuration directive to allow a user to specify the
permissions to be granted to the Unix socket file. I followed
the format Pieter and Salvatore discusses in issue #85 (
https://github.com/antirez/redis/issues/85 ).
2011-10-10 22:08:11 +02:00
1ca8deebef
Unlink Unix socket file on shutdown
2011-10-10 22:08:03 +02:00
b7f667b553
Issue #131 . stime/utime reported in INFO was inverted. Fixed thanks to Didier Spezia.
2011-10-10 15:29:36 +02:00
067ad37f96
Fix for bug #128 about the RENAME command.
2011-10-10 15:25:28 +02:00
a6e312bf9a
Added two new tests for RENAME, currently both will fail because of bug #128 .
2011-10-10 15:25:22 +02:00
0e841b998a
CONFIG SET/GET support for loglevel
2011-10-06 15:25:53 +02:00
cd0458470e
Redis test ports selection made more robust. This prevents the test from hanging if an already bound port is selected but the TCP server listening to it does not cause a protocol error with a Redis client PING. Also base port moved away from the range near to the Redis Cluster gossip ports.
2011-10-04 10:07:29 +02:00
678dbc48fd
Compilation fixed on OpenBSD making sure that _XOPEN_SOURCE is set to 700 in fmacros.h
2011-09-29 10:20:26 +02:00
3a91aca033
fixed a small bug that caused redis-cli to segfault when given single numeric parameter greater that zero.
2011-09-21 22:33:01 +02:00
9286ecd767
Release notes for Redis 2.4 RC8 added
2.4.0-rc8
2011-09-21 14:05:36 +02:00
902a656f7a
Version bumped to 2.3.11
2011-09-21 13:56:03 +02:00
a58e486d79
no longer valid design documents removed
2011-09-20 11:15:18 +02:00
b0fcf23304
hash zipmap max entries and entry size information removed from INFO command since we have this info and the equivalent info for sets, hashes, zset accessible via the CONFIG GET command.
2011-09-20 11:08:08 +02:00
57f611d953
Corrected typo in documentation for R_Zero, R_PosInf, R_NegInf, R_Nan;
2011-09-20 11:01:20 +02:00
20c26321c2
Fixed compilation on Mac/PPC
...
Applied patch from Issue 119 provided by
pahowes@gmail.com
2011-09-20 10:59:47 +02:00
2017d8baf7
[issue 620] don't segfault if number of arguments is less than 1
2011-09-20 10:56:43 +02:00
a511ce1b49
Include port number in error when can't bind lisetning port on startup.
2011-09-20 10:48:33 +02:00
1f164f4e1d
Fixed comment typo
2011-09-19 17:49:50 +02:00
9f775040c8
Comment out things in bio.c that are currently not useful but that may be useful in the future.
2011-09-19 17:44:21 +02:00
6ca793fc21
Emit a log message when AOF fsync is still in progress but we are forced to write from the main thread since two seconds already elapsed.
2011-09-19 17:44:17 +02:00
01ac844ba2
use aof_fsync wrapper instead of fsync(2) in bio.c
2011-09-19 17:44:11 +02:00
79b9ec53d1
fixed flushAppendOnlyFile() function prototype to reflect the new implementation, fixing compilation.
2011-09-19 17:43:56 +02:00
4c2d5f0980
postpone the AOF fsync if policy is everysec and there is a background fsync already going.
2011-09-19 17:43:49 +02:00
056c2acaea
Fixed typo preventing compilation
2011-09-19 17:43:44 +02:00
f85c383b6c
Added aof_backgronud_fsync() function, and use it in the bacground rewrite done handler when the fsync policy is everysec.
2011-09-19 17:43:40 +02:00
3ae56d8458
REDIS_BIO_AOF_FSYNC implemented
2011-09-19 17:43:34 +02:00
0807f5b9ff
fixed a problem in bioOlderJobType() when there are no jobs of the specified type. Now the function returns 0 when this happens.
2011-09-19 17:43:28 +02:00
2eae7cbc7d
some more comment about bio.c design
2011-09-19 17:43:23 +02:00
693618f1c1
Remove backgroud jobs from the queue only when the processing was completed, and not just started.
2011-09-19 17:43:19 +02:00
c67e8d3bf6
Use a different thread for every different type of background job
2011-09-19 17:43:13 +02:00
411cb75bcd
Better comments for bioWaitPendingJobsLE
2011-09-19 17:43:07 +02:00
794419192e
Background I/O library enhanced so that the main thread can query for the number of pending jobs of the specified type.
2011-09-19 17:43:01 +02:00
481a05cd23
commenting out aof-race test for now, waiting for a fix to issue #80
2011-09-16 15:43:27 +02:00
b9a65682fb
Failing test related to AOF rewrite buffers
2011-09-16 11:24:08 +02:00