heap: remove unnecessary special-case check
[beanstalkd.git] / scripts / beanstalkd.sysconfig
blob5d96c03cbd57fafa9019f0ad02943258b25939ca
1 # System configuration for the beanstalkd daemon
3 # Available options correspond to the options to the
4 # beanstalkd commandline.
6 BEANSTALKD_ADDR=0.0.0.0
7 BEANSTALKD_PORT=11300
8 BEANSTALKD_USER=beanstalkd
10 # Job size is left to the default. Uncomment and set it
11 # to a value to have it take affect.
12 #BEANSTALKD_MAX_JOB_SIZE=65535
14 # Using the binlog is off by default.
16 # The direcory to house the binlog.  This will be created
17 # if it does not exist
18 #BEANSTALKD_BINLOG_DIR=/var/lib/beanstalkd/binlog
20 # fsync the binlog at most once every N milliseconds.
21 # setting this to 0 means 'always fsync'. If this is unset,
22 # and the binlog is used, then no explicit fsync is ever
23 # performed.  That is, the -F option is used.
24 #BEANSTALKD_BINLOG_FSYNC_PERIOD=
26 # The size of each binlog file.  This is rounded
27 # up to the nearest 512 byte boundary.
28 #BEANSTALKD_BINLOG_SIZE=10485760