- 23 Dec, 2014 1 commit
-
-
Matt Stancliff authored
-
- 17 Dec, 2014 1 commit
-
-
Rhommel Lamas authored
-
- 12 Dec, 2014 1 commit
-
-
Rhommel Lamas authored
-
- 10 Dec, 2014 1 commit
-
-
antirez authored
-
- 13 Aug, 2014 1 commit
-
-
antirez authored
-
- 12 Aug, 2014 1 commit
-
-
NanXiao authored
For some Solaris flavours, the inet_aton in in resolv library. Not linking this library will introduce link error. Improves compatability with older Solaris and still works on new Solaris. Closes #1092
-
- 08 Aug, 2014 1 commit
-
-
Joshua Anderson authored
Closes #1610
-
- 07 Aug, 2014 1 commit
-
-
siahl authored
Closes #1900
-
- 02 Jul, 2014 1 commit
-
-
antirez authored
-
- 01 Jul, 2014 1 commit
-
-
antirez authored
-
- 28 Mar, 2014 1 commit
-
-
antirez authored
To test the bitfield array of counters set/get macros from the Redis Tcl suite is hard, so a specialized command that is able to test the internals was developed.
-
- 28 Feb, 2014 1 commit
-
-
antirez authored
-
- 12 Dec, 2013 1 commit
-
-
antirez authored
See issue #1448.
-
- 03 Dec, 2013 1 commit
-
-
antirez authored
-
- 21 Mar, 2013 1 commit
-
-
Johan Bergström authored
-
- 17 Mar, 2013 3 commits
-
-
Johan Bergström authored
-
Johan Bergström authored
-
Johan Bergström authored
-
- 16 Mar, 2013 3 commits
-
-
Johan Bergström authored
-
Johan Bergström authored
-
Johan Bergström authored
This way, we can avoid -rdynamic and -pthread warnings on darwin.
-
- 26 Feb, 2013 1 commit
-
-
antirez authored
This commit allows Redis to set a process name that includes the binding address and the port number in order to make operations simpler. Redis children processes doing AOF rewrites or RDB saving change the name into redis-aof-rewrite and redis-rdb-bgsave respectively. This in general makes harder to kill the wrong process because of an error and makes simpler to identify saving children. This feature was suggested by Arnaud GRANAL in the Redis Google Group, Arnaud also pointed me to the setproctitle.c implementation includeed in this commit. This feature should work on all the Linux, OSX, and all the three major BSD systems.
-
- 11 Feb, 2013 1 commit
-
-
antirez authored
-
- 28 Jan, 2013 1 commit
-
-
antirez authored
-
- 29 Nov, 2012 1 commit
-
-
antirez authored
The idea is to be able to identify a build in a unique way, so for instance after a bug report we can recognize that the build is the one of a popular Linux distribution and perform the debugging in the same environment.
-
- 23 Jul, 2012 1 commit
-
-
antirez authored
This commit implements the first, beta quality implementation of Redis Sentinel, a distributed monitoring system for Redis with notification and automatic failover capabilities. More info at http://redis.io/topics/sentinel
-
- 24 May, 2012 2 commits
-
-
antirez authored
bitop.c contains the "Bit related string operations" so it seems more logical to call it bitops instead of bitop. This also makes it matching the name of the test (unit/bitops.tcl).
-
antirez authored
All the general string operations are implemented in t_string.c, however the bit operations, while targeting the string type, are better served in a specific file where we have the implementations of the following four commands and helper functions: GETBIT SETBIT BITOP BITCOUNT In the future this file will probably contain more code related to making the BITOP and BITCOUNT operations faster.
-
- 09 May, 2012 2 commits
- 07 May, 2012 1 commit
-
-
antirez authored
-
- 26 Apr, 2012 1 commit
-
-
antirez authored
A previous commit removed -g -rdynamic -ggdb as LDFLAGS, not allowing Redis to produce a stack trace wth symbol names on crash. This commit fixes the issue.
-
- 24 Apr, 2012 1 commit
-
-
antirez authored
-
- 14 Apr, 2012 7 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
This is not needed because every change in compiler/linker flags triggers a cleanup.
-
Pieter Noordhuis authored
This reflects that REDIS_*FLAGS will only be used for compilation of Redis and not for its dependencies. Similarly, that FINAL_*FLAGS are composed of other variables and holds the options that are finally passed to the compiler and linker.
-