Subversion Repositories configs

Rev

Rev 4 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 - 1
# -*- text -*-
2
#
34 - 3
#  $Id: d7605d9888607aa6451ab24450cebfd7bc9d4437 $
4 - 4
 
5
#
6
#  Configuration file for the "redis" module.  This module does nothing
7
#  Other than provide connections to a redis database, and a %{redis: ...}
8
#  expansion.
9
#
10
redis {
11
	#  Host where the redis server is located.
12
	#  We recommend using ONLY 127.0.0.1 !
13
	hostname = 127.0.0.1
14
 
15
	#  The default port.
16
	port = 6379
17
 
18
	#  The password used to authenticate to the server.
19
	#  We recommend using a strong password.
20
#	password = thisisreallysecretandhardtoguess
21
 
22
	# The number of connections to open to the database.
23
	num_connections = 20
24
 
25
	# If a connection fails, retry after this time.
26
	connect_failure_retry_delay = 60
27
 
28
	#  Set the maximum lifetime for one connection.
29
	#  Use 0 for "lives forever"
30
	lifetime = 86400
31
 
32
	#  Set the maximum queries used for one connection.
33
	#  Use 0 for "no limit"
34
	max_queries = 0
35
}