summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 2.4.0 Release notes.2.4.0antirez2011-10-141-0/+16
|
* Version bumped to 2.4.0antirez2011-10-141-1/+1
|
* Exit with Fatal error at startup if the RDB file signature or version is wrong.antirez2011-10-142-3/+13
| | | | Ref: issue #103
* redis-check-dump: RDB version 2 now supported.antirez2011-10-141-3/+12
|
* More informative error when DEBUG RELOAD fails.antirez2011-10-141-1/+1
|
* Fix for issue #132. Now AUTH raises an error if no server password is ↵antirez2011-10-102-3/+17
| | | | configured.
* Added a config directive for a Unix socket maskNathan Florea2011-10-106-3/+14
| | | | | | | 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).
* Unlink Unix socket file on shutdownNathan Florea2011-10-101-0/+4
|
* Issue #131. stime/utime reported in INFO was inverted. Fixed thanks to ↵antirez2011-10-101-2/+2
| | | | Didier Spezia.
* Fix for bug #128 about the RENAME command.antirez2011-10-101-3/+6
|
* Added two new tests for RENAME, currently both will fail because of bug #128.antirez2011-10-101-0/+19
|
* CONFIG SET/GET support for loglevelantirez2011-10-061-0/+26
|
* Redis test ports selection made more robust. This prevents the test from ↵antirez2011-10-042-22/+25
| | | | 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.
* Compilation fixed on OpenBSD making sure that _XOPEN_SOURCE is set to 700 in ↵antirez2011-09-291-1/+1
| | | | fmacros.h
* fixed a small bug that caused redis-cli to segfault when given single ↵Juri M. Vainonen2011-09-211-1/+1
| | | | numeric parameter greater that zero.
* Release notes for Redis 2.4 RC8 added2.4.0-rc8antirez2011-09-211-0/+17
|
* Version bumped to 2.3.11antirez2011-09-211-1/+1
|
* no longer valid design documents removedantirez2011-09-202-557/+0
|
* hash zipmap max entries and entry size information removed from INFO command ↵antirez2011-09-201-4/+0
| | | | since we have this info and the equivalent info for sets, hashes, zset accessible via the CONFIG GET command.
* Corrected typo in documentation for R_Zero, R_PosInf, R_NegInf, R_Nan;vambo2011-09-201-1/+1
|
* Fixed compilation on Mac/PPCKonstantin Tokarev2011-09-201-1/+3
| | | | | Applied patch from Issue 119 provided by pahowes@gmail.com
* [issue 620] don't segfault if number of arguments is less than 1Konstantin Merenkov2011-09-201-0/+2
|
* Include port number in error when can't bind lisetning port on startup.antirez2011-09-201-1/+2
|
* Fixed comment typoantirez2011-09-191-1/+1
|
* Comment out things in bio.c that are currently not useful but that may be ↵antirez2011-09-191-0/+6
| | | | useful in the future.
* Emit a log message when AOF fsync is still in progress but we are forced to ↵antirez2011-09-191-0/+1
| | | | write from the main thread since two seconds already elapsed.
* use aof_fsync wrapper instead of fsync(2) in bio.cantirez2011-09-191-1/+1
|
* fixed flushAppendOnlyFile() function prototype to reflect the new ↵antirez2011-09-191-1/+1
| | | | implementation, fixing compilation.
* postpone the AOF fsync if policy is everysec and there is a background fsync ↵antirez2011-09-193-8/+54
| | | | already going.
* Fixed typo preventing compilationantirez2011-09-191-1/+1
|
* Added aof_backgronud_fsync() function, and use it in the bacground rewrite ↵antirez2011-09-191-1/+8
| | | | done handler when the fsync policy is everysec.
* REDIS_BIO_AOF_FSYNC implementedantirez2011-09-192-1/+4
|
* fixed a problem in bioOlderJobType() when there are no jobs of the specified ↵antirez2011-09-191-0/+4
| | | | type. Now the function returns 0 when this happens.
* some more comment about bio.c designantirez2011-09-191-0/+4
|
* Remove backgroud jobs from the queue only when the processing was completed, ↵antirez2011-09-191-1/+1
| | | | and not just started.
* Use a different thread for every different type of background jobantirez2011-09-193-42/+67
|
* Better comments for bioWaitPendingJobsLEantirez2011-09-191-1/+9
|
* Background I/O library enhanced so that the main thread can query for the ↵antirez2011-09-192-2/+52
| | | | number of pending jobs of the specified type.
* commenting out aof-race test for now, waiting for a fix to issue #80antirez2011-09-161-1/+0
|
* Failing test related to AOF rewrite buffersPieter Noordhuis2011-09-162-0/+36
|
* Enforce upper bound for number of requests in redis-benchmarkPieter Noordhuis2011-09-161-11/+19
|
* Fix AOF race that may duplicate commandsPieter Noordhuis2011-09-161-0/+5
|
* Fixed a bug in the average latency metering of redis-cli --latencyantirez2011-09-151-0/+1
|
* Implemented --latency in redis-cliantirez2011-09-151-0/+42
|
* Optimize LRANGE to scan the list starting from the head or the tail in order ↵antirez2011-09-141-1/+6
| | | | to traverse the minimal number of elements. Thanks to Didier Spezia for noticing the problem and providing a patch.
* Don't replicate/AOF SAVEantirez2011-09-141-2/+2
|
* use bio.c instead of libeio for closing the AOF file in background. Some ↵antirez2011-09-141-19/+20
| | | | comment added and other minor changes.
* Asynchronously close old file after BGREWRITEAOFPieter Noordhuis2011-09-141-32/+96
|
* make bio_list static as wellantirez2011-09-141-1/+1
|
* debug message removedantirez2011-09-142-2/+4
|