summaryrefslogtreecommitdiff
path: root/src/t_list.c
Commit message (Expand)AuthorAgeFilesLines
...
* Var renamed into pushGenericCommand() to better reflect what it means.antirez2012-02-281-3/+3
* 64 bit instances are no longer limited to have at max 2^32-1 elements in lists.antirez2012-01-311-10/+4
* Fix issue #247 : Accepting non-integer parameters when shouldn'tBigCat2011-12-191-7/+22
* dict.c API names modified to be more coincise and consistent.antirez2011-11-081-3/+3
* replaced redisAssert() with redisAssertWithInfo() in a shitload of places.antirez2011-10-041-8/+8
* Optimize LRANGE to scan the list starting from the head or the tail in order ...antirez2011-09-141-1/+6
* fixed typos in the comments of rpoplpushHandlePush()antirez2011-09-121-3/+5
* Fix crash when chaining brpoplpush with other blocking commands.Hampus Wessman2011-09-071-1/+1
* Take a pointer to the relevant entry of the command table in the client struc...antirez2011-07-081-0/+3
* Fix for bug 561 and other related problemsantirez2011-06-201-10/+38
* removed assert causing an illegal memory access. This was responsible of cras...antirez2011-05-111-1/+0
* variadic LPUSH/RPUSHantirez2011-04-151-20/+25
* Clarify commentPieter Noordhuis2011-02-031-1/+1
* Reply with single null bulk for unsuccesful BRPOPLPUSHPieter Noordhuis2011-02-031-1/+1
* Remove client from list of unblocked clients when it is free'd2.3-alpha0Pieter Noordhuis2011-01-171-1/+2
* touched key for WATCH refactored into a more general thing that can be used a...antirez2010-12-291-11/+11
* Merge remote branch 'pietern/brpoplpush'antirez2010-12-141-64/+145
|\
| * Don't execute commands for clients when they are unblockedPieter Noordhuis2010-12-061-6/+1
| * Fix case and indentPieter Noordhuis2010-12-061-1/+1
| * Check other blocked clients when value could not be pushedPieter Noordhuis2010-12-061-23/+41
| * Move code for pushing on a (blocking) RPOPLPUSHPieter Noordhuis2010-12-061-33/+27
| * Rename blpop_blocked_clients to bpop_blocked_clientsPieter Noordhuis2010-12-061-2/+2
| * Move timeout logicPieter Noordhuis2010-12-061-15/+10
| * Fix BRPOPLPUSH behavior for all use cases.Michel Martens & Damian Janowski2010-11-291-10/+10
| * Adhere to conventions.Damian Janowski & Michel Martens2010-11-291-2/+1
| * Rename bstate to bpop.Damian Janowski & Michel Martens2010-11-291-19/+19
| * Remove warning.Damian Janowski & Michel Martens2010-11-291-18/+18
| * Handle BRPOPLPUSH inside a transaction.Damian Janowski & Michel Martens2010-11-291-25/+37
| * Refactor code for BRPOPLPUSH.Damian Janowski & Michel Martens2010-11-291-46/+77
| * Move to struct.Damian Janowski & Michel Martens2010-11-291-18/+18
| * BRPOPLPUSH.Damian Janowski & Michel Martens2010-11-291-23/+60
| * Fix case in RPOPLPUSH.Damian Janowski & Michel Martens2010-11-291-1/+1
* | LRANGE converted into a COW friendly command. Some refactoring, comment, and ...antirez2010-12-071-10/+26
|/
* Convert objects in the command procs instead of the protocol codePieter Noordhuis2010-10-171-2/+7
* Merge branch 'master' into networking-perfPieter Noordhuis2010-09-031-1/+20
|\
| * resolved conflict merging pietern/bpop-timeoutantirez2010-08-311-1/+13
| |\
| | * Verify that the blocking pop timeout value is a non-negative integerPieter Noordhuis2010-08-261-1/+13
| * | BLPOP inside MULTI/EXEC block no longer crashes, instead if the list is empty...antirez2010-08-301-0/+7
| |/
* | Use existing reply functions where possiblePieter Noordhuis2010-09-021-3/+3
* | Use specialized function to add multi bulk reply lengthPieter Noordhuis2010-09-021-3/+3
|/
* WATCH is now affected only when write commands actually modify the key contentantirez2010-07-121-0/+10
* merged code from 184d74ab, 4774a53b, f483ce5f to new file structurePieter Noordhuis2010-07-051-5/+4
* redis.c split into many different C files.antirez2010-07-011-0/+829