summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* JSON support for Lua scripting, based on work from @lp, thanks!. We are ↵antirez2011-10-195-2/+1697
| | | | using the good and fast cjson by Mark Pulford.
* Return from syncWithMaster() ASAP if the event fired but the instance is no ↵antirez2011-10-181-0/+7
| | | | longer a slave. This should fix Issue #145.
* First implementation of the ASKING command. Semantics still to verify.antirez2011-10-174-2/+23
|
* MIGRATE +NOKEY error was missing the final CRLF causing a protocol error.antirez2011-10-171-1/+1
|
* Fixed a typo causing segfault on MIGRATEantirez2011-10-171-1/+1
|
* Regression test for issue #142 addedantirez2011-10-171-0/+6
|
* FLUSHALL now prevents rdbSave() from resetting the dirty counter, so that ↵antirez2011-10-171-1/+7
| | | | the command will get replicated and put inside the AOF. This fixes issue #142
* FLUSHALL will only perform a blocking SAVE if RDB persistence is configured.antirez2011-10-171-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
|
* redis-trib: fix for a slot allocation bug.antirez2011-10-131-1/+2
|
* small comment addedantirez2011-10-131-1/+4
|
* Fix for issue #132. Now AUTH raises an error if no server password is ↵antirez2011-10-102-3/+17
| | | | configured.
* Merge pull request #126 from florean/unstableSalvatore Sanfilippo2011-10-106-3/+18
|\ | | | | Unlink Unix socket file on shutdown
| * 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-091-0/+4
| |
* | Issue #131. stime/utime reported in INFO was inverted. Fixed thanks to ↵antirez2011-10-101-3/+3
| | | | | | | | 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
|/
* not used parameter for redisLog() removed. Error message grammar fixed.antirez2011-10-081-1/+1
| | | | Thanks to @ardsrk.
* Redis Cluster: process node to node CLUSTERMSG_TYPE_PUBLISH messages and ↵antirez2011-10-072-0/+28
| | | | send it to the local clients.
* propagate PUBLISH messages using the redis cluster nodes bus. Still need to ↵antirez2011-10-073-12/+82
| | | | process the incoming packets of that type. Work in progress.
* Totally hackish and dirty, but working, support for Redis Cluster in redis-cliantirez2011-10-051-16/+63
|
* A node can populate a slot if a message from a trusted slot is received ↵antirez2011-10-051-1/+1
| | | | claiming ownership of this slot, that is currently empty or served by a node in FAIL state. However this feature was broken since calling clusterAddSlot() was not enough as the slot bit is already set in the node that pong us. We need to directly alter the table. This commit fixes the issue.
* Merge remote-tracking branch 'origin/unstable' into unstableantirez2011-10-052-2/+7
|\
| * Merge pull request #118 from dvirsky/unstableSalvatore Sanfilippo2011-10-052-2/+7
| |\ | | | | | | fixes to install scripts
| | * fixes to install scriptdvir volk2011-10-042-2/+7
| | |
* | | CONFIG SET/GET support for loglevelantirez2011-10-051-0/+26
| | |
* | | just minor aesthetic changes to cluster.cantirez2011-10-051-2/+3
|/ /
* | replaced redisAssert() with redisAssertWithInfo() in a shitload of places.antirez2011-10-0414-85/+86
| |
* | redisAssertWithClientInfo() is now redisAssertWithInfo() that is also able ↵antirez2011-10-042-26/+37
| | | | | | | | to report an optional object. The client is also optional. Specifying NULL will prevent dumping the not available information (either client or object).
* | Introduced a redisAssert() variant that is able to show information about ↵antirez2011-10-042-2/+41
|/ | | | the client in the context where the failed assertion was detected.
* redis-trib: create subcommand fixed calling node info loading method. Was ↵antirez2011-10-041-0/+1
| | | | needed after recent refactoring.
* 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.
* Revert "Use the new install script as make install target. Message about ↵antirez2011-10-032-2/+7
| | | | | | | | | | | | install script requiring root changed a bit to make it more evident." After talking with Pieter he changed my mind about this, it is better to have a simpler install script that works everywhere, and the complex one can be always executed if needed by hand. We'll make possibly a new target for the full featured installation script, and even suggest it after a Make install. This reverts commit f1e60d75309990b25a1763e004d7044c77c53834.
* Rewrite MIGRATE as DEL for AOF/replication. Also increment the dirty counter ↵antirez2011-10-031-0/+8
| | | | to both force replication and persistence.
* increment server.dirty in restore command to make sure it is replicated and ↵antirez2011-10-031-0/+1
| | | | increments the dirty count for persistence concerns.
* Merge pull request #114 from pietern/unstable-zcountSalvatore Sanfilippo2011-10-031-47/+129
|\ | | | | Use rank information to compute ZCOUNT
| * Remove ZCOUNT branches from generic RANGEBYSCORE codePieter Noordhuis2011-10-031-46/+55
| |
| * Use element rank instead of iterating in ZCOUNTPieter Noordhuis2011-10-031-1/+74
| |
* | Use the new install script as make install target. Message about install ↵antirez2011-10-032-7/+2
| | | | | | | | script requiring root changed a bit to make it more evident.
* | changed license to gpl BSD. LOLdvir volk2011-10-031-11/+19
| |
* | changed license to gpl v3dvir volk2011-10-031-2/+18
| |
* | fixes to install script and templatedvir volk2011-10-032-8/+14
| |
* | Added installer and config template rendererdvir volk2011-10-033-0/+554
|/
* Exact variant of CRC16 specified into crc16.cantirez2011-10-021-1/+14
|
* when processing gossip packets make sure to also update the node bitmap when ↵antirez2011-10-011-1/+1
| | | | associating slots to nodes. Fixed simply using the appropriate helper function to add a slot.
* fixed a few problems with redis-trib resharding.antirez2011-10-011-10/+28
|
* redis-trib: initial working implementation of cluster rehashing, more work ↵antirez2011-09-301-4/+26
| | | | needed to make it more correct, more reliable.