Skip to content

Commit

Permalink
minor fix for Solaris boxes
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed May 28, 2009
1 parent 3fd78bc commit 144d479
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pqsort.c
Expand Up @@ -37,6 +37,8 @@
* SUCH DAMAGE.
*/

#define __P(protos) protos

#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
Expand Down
7 changes: 7 additions & 0 deletions redis.conf
Expand Up @@ -97,6 +97,13 @@ databases 16
# If all this fails, Redis will start to reply with errors to commands
# that will use more memory, like SET, LPUSH, and so on, and will continue
# to reply to most read-only commands like GET.
#
# WARNING: maxmemory can be a good idea mainly if you want to use Redis as a
# 'state' server or cache, not as a real DB. When Redis is used as a real
# database the memory usage will grow over the weeks, it will be obvious if
# it is going to use too much memory in the long run, and you'll have the time
# to upgrade. With maxmemory after the limit is reached you'll start to get
# errors for write operations, and this may even lead to DB inconsistency.

# maxmemory <bytes>

Expand Down

0 comments on commit 144d479

Please sign in to comment.