- 12 Dec, 2018 1 commit
-
-
antirez authored
-
- 11 Sep, 2018 1 commit
-
-
antirez authored
-
- 31 Aug, 2018 1 commit
-
-
antirez authored
See #5297.
-
- 15 Oct, 2015 1 commit
-
-
antirez authored
-
- 27 Mar, 2015 1 commit
-
-
antirez authored
-
- 24 Nov, 2014 1 commit
-
-
antirez authored
-
- 24 Oct, 2014 1 commit
-
-
antirez authored
-
- 29 Sep, 2014 1 commit
-
-
Matt Stancliff authored
-
- 10 Jul, 2014 1 commit
-
-
antirez authored
-
- 26 Jun, 2014 1 commit
-
-
antirez authored
-
- 23 Jun, 2014 1 commit
-
-
antirez authored
-
- 30 May, 2013 1 commit
-
-
antirez authored
-
- 23 Jan, 2013 1 commit
-
-
Johan Bergström authored
-
- 17 Sep, 2012 1 commit
-
-
antirez authored
Redis provides support for blocking operations such as BLPOP or BRPOP. This operations are identical to normal LPOP and RPOP operations as long as there are elements in the target list, but if the list is empty they block waiting for new data to arrive to the list. All the clients blocked waiting for th same list are served in a FIFO way, so the first that blocked is the first to be served when there is more data pushed by another client into the list. The previous implementation of blocking operations was conceived to serve clients in the context of push operations. For for instance: 1) There is a client "A" blocked on list "foo". 2) The client "B" performs `LPUSH foo somevalue`. 3) The client "A" is served in the context of the "B" LPUSH, synchronously. Processing things in a synchronous way was useful as if "A" pushes a value that is served by "B", from the point of view of the database is a NOP (no operation) thing, that is, nothing is replicated...
-
- 30 Apr, 2012 1 commit
-
-
antirez authored
-
- 29 Apr, 2012 1 commit
-
-
antirez authored
-
- 26 Apr, 2012 1 commit
-
-
antirez authored
Now it uses the new wait_for_condition testing primitive. Also wait_for_condition implementation was fixed in this commit to properly escape the expr command and its argument.
-
- 04 Apr, 2012 1 commit
-
-
antirez authored
-
- 12 Jan, 2012 1 commit
-
-
antirez authored
-
- 06 Jan, 2012 1 commit
-
-
antirez authored
Regression test for the main problem causing issue #141. Minor changes/fixes/additions to the test suite itself needed to write the test.
-
- 17 Oct, 2011 1 commit
-
-
antirez authored
-
- 11 Jul, 2011 1 commit
-
-
antirez authored
-
- 10 Jul, 2011 1 commit
-
-
antirez authored
replication test split into three parts in order to improve test execution time. Random fixes and improvements.
-
- 20 Jun, 2011 1 commit
-
-
antirez authored
-
- 24 May, 2011 1 commit
-
-
antirez authored
-
- 12 May, 2011 1 commit
-
-
antirez authored
-
- 03 Aug, 2010 1 commit
-
-
antirez authored
-
- 28 Jul, 2010 1 commit
-
-
antirez authored
better random dataset creation function in test. master-slave replication test now is able to save the two datasets in CSV when an inconsistency is detected.
-
- 06 Jul, 2010 1 commit
-
-
antirez authored
-
- 02 Jun, 2010 2 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
changed how server.tcl accepts options to support more directives without requiring more arguments to the proc
-
- 14 May, 2010 1 commit
-
-
Pieter Noordhuis authored
-