Commit Graph

1770 Commits

Author SHA1 Message Date
16d227ef2d Removed useless stuff from config.h that are now moved into zmalloc.h 2011-06-01 18:07:40 +02:00
ac1eda60b0 Fixed warning on Linux 2011-06-01 18:06:30 +02:00
598387b970 encoding agnostic intsets 2011-06-01 18:04:50 +02:00
8789dc82aa fmacros in utils.c to avoid warning about strcasecmp() 2011-06-01 17:58:20 +02:00
7f90bcfaee Added -ldl when linking against jemalloc, needed on Linux 2011-06-01 17:56:50 +02:00
860e3ade2d It is now possible to build with: make 32bit USE_JEMALLOC=yes 2011-06-01 17:08:12 +02:00
0042a2d737 jemalloc support backported in 2.4 using part of the Pieter Noordhuis and Didier Spezia original implementations 2011-06-01 16:52:53 +02:00
0811e89c80 jemalloc source added 2011-06-01 16:16:13 +02:00
fe71355df9 There is no debug mode in benchmark tool 2011-05-31 17:42:48 -07:00
33d00ff7d5 Provide custom command to benchmark against via args 2011-05-31 17:42:47 -07:00
c60a0f588e More const's in redis-benchmark.c 2011-05-31 17:42:47 -07:00
942354f925 version bumped to 2.3.4 2011-05-31 20:46:38 +02:00
cd7a497164 revert ZADD implementation to 2.4 WATCH API. 2011-05-31 20:40:24 +02:00
5fca35da3f disabled development test entry, tests moved in the right place 2011-05-31 20:37:59 +02:00
d260b9a499 Variadic ZADD tests 2011-05-31 20:37:52 +02:00
45df42c9fe Variadic ZADD 2011-05-31 20:37:08 +02:00
6e326c81dc prepare to cherry pick variadic ZADD without conflicts 2011-05-31 20:36:17 +02:00
83533b622e ZREM tests 2011-05-31 20:34:02 +02:00
913090ec63 Variadic ZREM 2011-05-31 20:33:47 +02:00
51501514e9 Fix for the variadic version of SREM. Regression test added. 2011-05-31 20:15:25 +02:00
09843df1dd test for the BRPOPLPUSH issue 561 related issues 2011-05-31 12:16:16 +02:00
4f8cf6a23c use the new rewriteClientCommandVector() function for SPOP -> SREM replication translation as well. 2011-05-31 12:15:55 +02:00
0d119ad3a3 modified the BRPOPLPUSH target field cleanup strategy to fix it the proper way. 2011-05-31 12:14:26 +02:00
6a1275bcab Removed a leak in the BRPOPLPUSH unrelated to issue 561 2011-05-31 12:14:13 +02:00
3769dbd722 Fix for issue 516, rewriting the command vector to correctly repliate BRPOPLPUSH. Still to test everything, especially edge cases 2011-05-31 12:14:07 +02:00
afc151d3ba Make replication faster (biggest gain for small number of slaves) 2011-05-29 17:55:13 -07:00
6ac57f16cb Merge remote branch 'pietern/2.4-replnonblock' into 2.4 2011-05-29 14:24:50 +02:00
61a707af39 version bumped to 2.3.3 2011-05-28 23:04:03 +02:00
5cb0558e8c 2.4 redis-cli synched with the latest changes into unstable. 2011-05-28 23:02:49 +02:00
e5dbbc20f1 Fix for Pub/Sub system, introduced in Redis 2.2.6 with the new copy-on-write safe iterator semantics. In the hope this is the last bug I introduced this way. 2011-05-25 12:31:32 +02:00
1f036c6587 Comment typo fixed 2011-05-24 10:43:19 +02:00
7dd1e95288 Fixed typo in comment 2011-05-24 10:35:48 +02:00
ecfc0583da Configurable synchronous I/O timeout 2011-05-22 12:57:56 +02:00
ff8d85885e Minor changes in non-blocking repl. connect 2011-05-22 12:48:10 +02:00
d89db584fa Merge branch '2.4' of github.com:antirez/redis into 2.4 2011-05-20 11:44:38 +02:00
1f2af715cb Print version info before running the test 2011-05-20 11:44:32 +02:00
78c05caf5e Non-blocking connect with master 2011-05-19 18:53:31 +02:00
10e4b58312 Fix for ZUNIONSTORE bug when there is an empty set among input sets. Regression test added. 2011-05-19 17:59:13 +02:00
de6ba77bc4 Fixed misuse of the new iterator semantics in ZUNIONSTORE 2011-05-15 17:28:22 +02:00
5d64f21792 Fix for a possible bug related to ZINTER/UNIONSTORE called with the same source set more than one time. 2011-05-15 17:23:59 +02:00
86277eee4c Fixed SINTER[STORE] problem related to the new copy on write safe iterator 2011-05-15 12:18:56 +02:00
24430cb820 Fix for DEBUG DIGEST, key may expire on lookup 2011-05-13 11:44:14 +02:00
604d26ffde ZINTERSTORE regressiont test with two sets, intset+hashtable 2011-05-12 20:20:25 +02:00
338e44a6e7 replication with expire test modified to produce no or less false failures 2011-05-12 20:17:07 +02:00
de77addb36 ziplist are now endianess agnostic 2011-05-12 13:26:55 +02:00
9f517b920e removed assert causing an illegal memory access. This was responsible of crashes during BLPOP and other list blocking operations. 2011-05-11 09:50:43 +02:00
d0f710ea09 RDB version signature bumped to 2, now that direct saving of specially encoded types is implemented 2.2 instances are no longer able to read rdb files produced by 2.4 or unstable. 2011-05-10 11:33:29 +02:00
d0d72c19d3 use safe Dict iteration in DEBUG DIGEST 2011-05-10 10:42:20 +02:00
da49700d5a Introduced a safe iterator interface that can be used to iterate while accessing the dictionary at the same time. Now the default interface is consireded unsafe and should be used only with dictNext() 2011-05-10 10:22:14 +02:00
ba07e1f505 Merge branch '2.4' of github.com:antirez/redis into 2.4 2011-05-07 12:10:11 +02:00