peony 0.0.2 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,624 @@
1
+ # Redis configuration file example
2
+
3
+ # Note on units: when memory size is needed, it is possible to specify
4
+ # it in the usual form of 1k 5GB 4M and so forth:
5
+ #
6
+ # 1k => 1000 bytes
7
+ # 1kb => 1024 bytes
8
+ # 1m => 1000000 bytes
9
+ # 1mb => 1024*1024 bytes
10
+ # 1g => 1000000000 bytes
11
+ # 1gb => 1024*1024*1024 bytes
12
+ #
13
+ # units are case insensitive so 1GB 1Gb 1gB are all the same.
14
+
15
+ # By default Redis does not run as a daemon. Use 'yes' if you need it.
16
+ # Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
17
+ daemonize <%= redis_daemonize %>
18
+
19
+ # When running daemonized, Redis writes a pid file in /var/run/redis.pid by
20
+ # default. You can specify a custom pid file location here.
21
+ pidfile <%= redis_pid %>
22
+
23
+ # Accept connections on the specified port, default is 6379.
24
+ # If port 0 is specified Redis will not listen on a TCP socket.
25
+ port <%= redis_port %>
26
+
27
+ # If you want you can bind a single interface, if the bind option is not
28
+ # specified all the interfaces will listen for incoming connections.
29
+ #
30
+ # bind 127.0.0.1
31
+
32
+ # Specify the path for the unix socket that will be used to listen for
33
+ # incoming connections. There is no default, so Redis will not listen
34
+ # on a unix socket when not specified.
35
+ #
36
+ # unixsocket /tmp/redis.sock
37
+ # unixsocketperm 755
38
+
39
+ # Close the connection after a client is idle for N seconds (0 to disable)
40
+ timeout <%= redis_timeout %>
41
+
42
+ # Set server verbosity to 'debug'
43
+ # it can be one of:
44
+ # debug (a lot of information, useful for development/testing)
45
+ # verbose (many rarely useful info, but not a mess like the debug level)
46
+ # notice (moderately verbose, what you want in production probably)
47
+ # warning (only very important / critical messages are logged)
48
+ loglevel <%= redis_loglevel %>
49
+
50
+ # Specify the log file name. Also 'stdout' can be used to force
51
+ # Redis to log on the standard output. Note that if you use standard
52
+ # output for logging but daemonize, logs will be sent to /dev/null
53
+ logfile <%= redis_logfile %>
54
+
55
+ # To enable logging to the system logger, just set 'syslog-enabled' to yes,
56
+ # and optionally update the other syslog parameters to suit your needs.
57
+ # syslog-enabled no
58
+
59
+ # Specify the syslog identity.
60
+ # syslog-ident redis
61
+
62
+ # Specify the syslog facility. Must be USER or between LOCAL0-LOCAL7.
63
+ # syslog-facility local0
64
+
65
+ # Set the number of databases. The default database is DB 0, you can select
66
+ # a different one on a per-connection basis using SELECT <dbid> where
67
+ # dbid is a number between 0 and 'databases'-1
68
+ databases <%= redis_databases %>
69
+
70
+ ################################ SNAPSHOTTING #################################
71
+ #
72
+ # Save the DB on disk:
73
+ #
74
+ # save <seconds> <changes>
75
+ #
76
+ # Will save the DB if both the given number of seconds and the given
77
+ # number of write operations against the DB occurred.
78
+ #
79
+ # In the example below the behaviour will be to save:
80
+ # after 900 sec (15 min) if at least 1 key changed
81
+ # after 300 sec (5 min) if at least 10 keys changed
82
+ # after 60 sec if at least 10000 keys changed
83
+ #
84
+ # Note: you can disable saving at all commenting all the "save" lines.
85
+ #
86
+ # It is also possible to remove all the previously configured save
87
+ # points by adding a save directive with a single empty string argument
88
+ # like in the following example:
89
+ #
90
+ # save ""
91
+
92
+ save 900 1
93
+ save 300 10
94
+ save 60 10000
95
+
96
+ # By default Redis will stop accepting writes if RDB snapshots are enabled
97
+ # (at least one save point) and the latest background save failed.
98
+ # This will make the user aware (in an hard way) that data is not persisting
99
+ # on disk properly, otherwise chances are that no one will notice and some
100
+ # distater will happen.
101
+ #
102
+ # If the background saving process will start working again Redis will
103
+ # automatically allow writes again.
104
+ #
105
+ # However if you have setup your proper monitoring of the Redis server
106
+ # and persistence, you may want to disable this feature so that Redis will
107
+ # continue to work as usually even if there are problems with disk,
108
+ # permissions, and so forth.
109
+ stop-writes-on-bgsave-error yes
110
+
111
+ # Compress string objects using LZF when dump .rdb databases?
112
+ # For default that's set to 'yes' as it's almost always a win.
113
+ # If you want to save some CPU in the saving child set it to 'no' but
114
+ # the dataset will likely be bigger if you have compressible values or keys.
115
+ rdbcompression <%= rdbcompression %>
116
+
117
+ # Since verison 5 of RDB a CRC64 checksum is placed at the end of the file.
118
+ # This makes the format more resistant to corruption but there is a performance
119
+ # hit to pay (around 10%) when saving and loading RDB files, so you can disable it
120
+ # for maximum performances.
121
+ #
122
+ # RDB files created with checksum disabled have a checksum of zero that will
123
+ # tell the loading code to skip the check.
124
+ rdbchecksum <%= rdbchecksum %>
125
+
126
+ # The filename where to dump the DB
127
+ dbfilename <%= redis_dbfilename %>
128
+
129
+ # The working directory.
130
+ #
131
+ # The DB will be written inside this directory, with the filename specified
132
+ # above using the 'dbfilename' configuration directive.
133
+ #
134
+ # Also the Append Only File will be created inside this directory.
135
+ #
136
+ # Note that you must specify a directory here, not a file name.
137
+ #dir ./
138
+ dir <%= redis_dir %>
139
+
140
+ ################################# REPLICATION #################################
141
+
142
+ # Master-Slave replication. Use slaveof to make a Redis instance a copy of
143
+ # another Redis server. Note that the configuration is local to the slave
144
+ # so for example it is possible to configure the slave to save the DB with a
145
+ # different interval, or to listen to another port, and so on.
146
+ #
147
+ # slaveof <masterip> <masterport>
148
+
149
+ # If the master is password protected (using the "requirepass" configuration
150
+ # directive below) it is possible to tell the slave to authenticate before
151
+ # starting the replication synchronization process, otherwise the master will
152
+ # refuse the slave request.
153
+ #
154
+ # masterauth <master-password>
155
+
156
+ # When a slave lost the connection with the master, or when the replication
157
+ # is still in progress, the slave can act in two different ways:
158
+ #
159
+ # 1) if slave-serve-stale-data is set to 'yes' (the default) the slave will
160
+ # still reply to client requests, possibly with out of date data, or the
161
+ # data set may just be empty if this is the first synchronization.
162
+ #
163
+ # 2) if slave-serve-stale data is set to 'no' the slave will reply with
164
+ # an error "SYNC with master in progress" to all the kind of commands
165
+ # but to INFO and SLAVEOF.
166
+ #
167
+ slave-serve-stale-data yes
168
+
169
+ # You can configure a slave instance to accept writes or not. Writing against
170
+ # a slave instance may be useful to store some ephemeral data (because data
171
+ # written on a slave will be easily deleted after resync with the master) but
172
+ # may also cause problems if clients are writing to it because of a
173
+ # misconfiguration.
174
+ #
175
+ # Since Redis 2.6 by default slaves are read-only.
176
+ #
177
+ # Note: read only slaves are not designed to be exposed to untrusted clients
178
+ # on the internet. It's just a protection layer against misuse of the instance.
179
+ # Still a read only slave exports by default all the administrative commands
180
+ # such as CONFIG, DEBUG, and so forth. To a limited extend you can improve
181
+ # security of read only slaves using 'rename-command' to shadow all the
182
+ # administrative / dangerous commands.
183
+ slave-read-only yes
184
+
185
+ # Slaves send PINGs to server in a predefined interval. It's possible to change
186
+ # this interval with the repl_ping_slave_period option. The default value is 10
187
+ # seconds.
188
+ #
189
+ # repl-ping-slave-period 10
190
+
191
+ # The following option sets a timeout for both Bulk transfer I/O timeout and
192
+ # master data or ping response timeout. The default value is 60 seconds.
193
+ #
194
+ # It is important to make sure that this value is greater than the value
195
+ # specified for repl-ping-slave-period otherwise a timeout will be detected
196
+ # every time there is low traffic between the master and the slave.
197
+ #
198
+ # repl-timeout 60
199
+
200
+ # The slave priority is an integer number published by Redis in the INFO output.
201
+ # It is used by Redis Sentinel in order to select a slave to promote into a
202
+ # master if the master is no longer working correctly.
203
+ #
204
+ # A slave with a low priority number is considered better for promotion, so
205
+ # for instance if there are three slaves with priority 10, 100, 25 Sentinel will
206
+ # pick the one wtih priority 10, that is the lowest.
207
+ #
208
+ # However a special priority of 0 marks the slave as not able to perform the
209
+ # role of master, so a slave with priority of 0 will never be selected by
210
+ # Redis Sentinel for promotion.
211
+ #
212
+ # By default the priority is 100.
213
+ slave-priority 100
214
+
215
+ ################################## SECURITY ###################################
216
+
217
+ # Require clients to issue AUTH <PASSWORD> before processing any other
218
+ # commands. This might be useful in environments in which you do not trust
219
+ # others with access to the host running redis-server.
220
+ #
221
+ # This should stay commented out for backward compatibility and because most
222
+ # people do not need auth (e.g. they run their own servers).
223
+ #
224
+ # Warning: since Redis is pretty fast an outside user can try up to
225
+ # 150k passwords per second against a good box. This means that you should
226
+ # use a very strong password otherwise it will be very easy to break.
227
+ #
228
+ # requirepass foobared
229
+
230
+ # Command renaming.
231
+ #
232
+ # It is possible to change the name of dangerous commands in a shared
233
+ # environment. For instance the CONFIG command may be renamed into something
234
+ # of hard to guess so that it will be still available for internal-use
235
+ # tools but not available for general clients.
236
+ #
237
+ # Example:
238
+ #
239
+ # rename-command CONFIG b840fc02d524045429941cc15f59e41cb7be6c52
240
+ #
241
+ # It is also possible to completely kill a command renaming it into
242
+ # an empty string:
243
+ #
244
+ # rename-command CONFIG ""
245
+
246
+ ################################### LIMITS ####################################
247
+
248
+ # Set the max number of connected clients at the same time. By default
249
+ # this limit is set to 10000 clients, however if the Redis server is not
250
+ # able to configure the process file limit to allow for the specified limit
251
+ # the max number of allowed clients is set to the current file limit
252
+ # minus 32 (as Redis reserves a few file descriptors for internal uses).
253
+ #
254
+ # Once the limit is reached Redis will close all the new connections sending
255
+ # an error 'max number of clients reached'.
256
+ #
257
+ # maxclients 10000
258
+
259
+ # Don't use more memory than the specified amount of bytes.
260
+ # When the memory limit is reached Redis will try to remove keys
261
+ # accordingly to the eviction policy selected (see maxmemmory-policy).
262
+ #
263
+ # If Redis can't remove keys according to the policy, or if the policy is
264
+ # set to 'noeviction', Redis will start to reply with errors to commands
265
+ # that would use more memory, like SET, LPUSH, and so on, and will continue
266
+ # to reply to read-only commands like GET.
267
+ #
268
+ # This option is usually useful when using Redis as an LRU cache, or to set
269
+ # an hard memory limit for an instance (using the 'noeviction' policy).
270
+ #
271
+ # WARNING: If you have slaves attached to an instance with maxmemory on,
272
+ # the size of the output buffers needed to feed the slaves are subtracted
273
+ # from the used memory count, so that network problems / resyncs will
274
+ # not trigger a loop where keys are evicted, and in turn the output
275
+ # buffer of slaves is full with DELs of keys evicted triggering the deletion
276
+ # of more keys, and so forth until the database is completely emptied.
277
+ #
278
+ # In short... if you have slaves attached it is suggested that you set a lower
279
+ # limit for maxmemory so that there is some free RAM on the system for slave
280
+ # output buffers (but this is not needed if the policy is 'noeviction').
281
+ #
282
+ # maxmemory <bytes>
283
+
284
+ # MAXMEMORY POLICY: how Redis will select what to remove when maxmemory
285
+ # is reached? You can select among five behavior:
286
+ #
287
+ # volatile-lru -> remove the key with an expire set using an LRU algorithm
288
+ # allkeys-lru -> remove any key accordingly to the LRU algorithm
289
+ # volatile-random -> remove a random key with an expire set
290
+ # allkeys-random -> remove a random key, any key
291
+ # volatile-ttl -> remove the key with the nearest expire time (minor TTL)
292
+ # noeviction -> don't expire at all, just return an error on write operations
293
+ #
294
+ # Note: with all the kind of policies, Redis will return an error on write
295
+ # operations, when there are not suitable keys for eviction.
296
+ #
297
+ # At the date of writing this commands are: set setnx setex append
298
+ # incr decr rpush lpush rpushx lpushx linsert lset rpoplpush sadd
299
+ # sinter sinterstore sunion sunionstore sdiff sdiffstore zadd zincrby
300
+ # zunionstore zinterstore hset hsetnx hmset hincrby incrby decrby
301
+ # getset mset msetnx exec sort
302
+ #
303
+ # The default is:
304
+ #
305
+ # maxmemory-policy volatile-lru
306
+
307
+ # LRU and minimal TTL algorithms are not precise algorithms but approximated
308
+ # algorithms (in order to save memory), so you can select as well the sample
309
+ # size to check. For instance for default Redis will check three keys and
310
+ # pick the one that was used less recently, you can change the sample size
311
+ # using the following configuration directive.
312
+ #
313
+ # maxmemory-samples 3
314
+
315
+ ############################## APPEND ONLY MODE ###############################
316
+
317
+ # By default Redis asynchronously dumps the dataset on disk. This mode is
318
+ # good enough in many applications, but an issue with the Redis process or
319
+ # a power outage may result into a few minutes of writes lost (depending on
320
+ # the configured save points).
321
+ #
322
+ # The Append Only File is an alternative persistence mode that provides
323
+ # much better durability. For instance using the default data fsync policy
324
+ # (see later in the config file) Redis can lose just one second of writes in a
325
+ # dramatic event like a server power outage, or a single write if something
326
+ # wrong with the Redis process itself happens, but the operating system is
327
+ # still running correctly.
328
+ #
329
+ # AOF and RDB persistence can be enabled at the same time without problems.
330
+ # If the AOF is enabled on startup Redis will load the AOF, that is the file
331
+ # with the better durability guarantees.
332
+ #
333
+ # Please check http://redis.io/topics/persistence for more information.
334
+
335
+ #appendonly no
336
+ appendonly <%= redis_appendonly %>
337
+
338
+ # The name of the append only file (default: "appendonly.aof")
339
+ appendfilename appendonly.aof
340
+
341
+ # The fsync() call tells the Operating System to actually write data on disk
342
+ # instead to wait for more data in the output buffer. Some OS will really flush
343
+ # data on disk, some other OS will just try to do it ASAP.
344
+ #
345
+ # Redis supports three different modes:
346
+ #
347
+ # no: don't fsync, just let the OS flush the data when it wants. Faster.
348
+ # always: fsync after every write to the append only log . Slow, Safest.
349
+ # everysec: fsync only one time every second. Compromise.
350
+ #
351
+ # The default is "everysec" that's usually the right compromise between
352
+ # speed and data safety. It's up to you to understand if you can relax this to
353
+ # "no" that will let the operating system flush the output buffer when
354
+ # it wants, for better performances (but if you can live with the idea of
355
+ # some data loss consider the default persistence mode that's snapshotting),
356
+ # or on the contrary, use "always" that's very slow but a bit safer than
357
+ # everysec.
358
+ #
359
+ # More details please check the following article:
360
+ # http://antirez.com/post/redis-persistence-demystified.html
361
+ #
362
+ # If unsure, use "everysec".
363
+
364
+ # appendfsync always
365
+ appendfsync everysec
366
+ # appendfsync no
367
+
368
+ # When the AOF fsync policy is set to always or everysec, and a background
369
+ # saving process (a background save or AOF log background rewriting) is
370
+ # performing a lot of I/O against the disk, in some Linux configurations
371
+ # Redis may block too long on the fsync() call. Note that there is no fix for
372
+ # this currently, as even performing fsync in a different thread will block
373
+ # our synchronous write(2) call.
374
+ #
375
+ # In order to mitigate this problem it's possible to use the following option
376
+ # that will prevent fsync() from being called in the main process while a
377
+ # BGSAVE or BGREWRITEAOF is in progress.
378
+ #
379
+ # This means that while another child is saving the durability of Redis is
380
+ # the same as "appendfsync none", that in practical terms means that it is
381
+ # possible to lost up to 30 seconds of log in the worst scenario (with the
382
+ # default Linux settings).
383
+ #
384
+ # If you have latency problems turn this to "yes". Otherwise leave it as
385
+ # "no" that is the safest pick from the point of view of durability.
386
+ no-appendfsync-on-rewrite no
387
+
388
+ # Automatic rewrite of the append only file.
389
+ # Redis is able to automatically rewrite the log file implicitly calling
390
+ # BGREWRITEAOF when the AOF log size will growth by the specified percentage.
391
+ #
392
+ # This is how it works: Redis remembers the size of the AOF file after the
393
+ # latest rewrite (or if no rewrite happened since the restart, the size of
394
+ # the AOF at startup is used).
395
+ #
396
+ # This base size is compared to the current size. If the current size is
397
+ # bigger than the specified percentage, the rewrite is triggered. Also
398
+ # you need to specify a minimal size for the AOF file to be rewritten, this
399
+ # is useful to avoid rewriting the AOF file even if the percentage increase
400
+ # is reached but it is still pretty small.
401
+ #
402
+ # Specify a percentage of zero in order to disable the automatic AOF
403
+ # rewrite feature.
404
+
405
+ auto-aof-rewrite-percentage 100
406
+ auto-aof-rewrite-min-size 64mb
407
+
408
+ ################################ LUA SCRIPTING ###############################
409
+
410
+ # Max execution time of a Lua script in milliseconds.
411
+ #
412
+ # If the maximum execution time is reached Redis will log that a script is
413
+ # still in execution after the maximum allowed time and will start to
414
+ # reply to queries with an error.
415
+ #
416
+ # When a long running script exceed the maximum execution time only the
417
+ # SCRIPT KILL and SHUTDOWN NOSAVE commands are available. The first can be
418
+ # used to stop a script that did not yet called write commands. The second
419
+ # is the only way to shut down the server in the case a write commands was
420
+ # already issue by the script but the user don't want to wait for the natural
421
+ # termination of the script.
422
+ #
423
+ # Set it to 0 or a negative value for unlimited execution without warnings.
424
+ lua-time-limit 5000
425
+
426
+ ################################ REDIS CLUSTER ###############################
427
+ #
428
+ # Normal Redis instances can't be part of a Redis Cluster, only nodes that are
429
+ # started as cluster nodes can. In order to start a Redis instance as a
430
+ # cluster node enable the cluster support uncommenting the following:
431
+ #
432
+ # cluster-enabled yes
433
+
434
+ # Every cluster node has a cluster configuration file. This file is not
435
+ # intended to be edited by hand. It is created and updated by Redis nodes.
436
+ # Every Redis Cluster node requires a different cluster configuration file.
437
+ # Make sure that instances running in the same system does not have
438
+ # overlapping cluster configuration file names.
439
+ #
440
+ # cluster-config-file nodes-6379.conf
441
+
442
+ # In order to setup your cluster make sure to read the documentation
443
+ # available at http://redis.io web site.
444
+
445
+ ################################## SLOW LOG ###################################
446
+
447
+ # The Redis Slow Log is a system to log queries that exceeded a specified
448
+ # execution time. The execution time does not include the I/O operations
449
+ # like talking with the client, sending the reply and so forth,
450
+ # but just the time needed to actually execute the command (this is the only
451
+ # stage of command execution where the thread is blocked and can not serve
452
+ # other requests in the meantime).
453
+ #
454
+ # You can configure the slow log with two parameters: one tells Redis
455
+ # what is the execution time, in microseconds, to exceed in order for the
456
+ # command to get logged, and the other parameter is the length of the
457
+ # slow log. When a new command is logged the oldest one is removed from the
458
+ # queue of logged commands.
459
+
460
+ # The following time is expressed in microseconds, so 1000000 is equivalent
461
+ # to one second. Note that a negative number disables the slow log, while
462
+ # a value of zero forces the logging of every command.
463
+ slowlog-log-slower-than 10000
464
+
465
+ # There is no limit to this length. Just be aware that it will consume memory.
466
+ # You can reclaim memory used by the slow log with SLOWLOG RESET.
467
+ slowlog-max-len 128
468
+
469
+ ############################# Event notification ##############################
470
+
471
+ # Redis can notify Pub/Sub clients about events happening in the key space.
472
+ # This feature is documented at http://redis.io/topics/keyspace-events
473
+ #
474
+ # For instance if keyspace events notification is enabled, and a client
475
+ # performs a DEL operation on key "foo" stored in the Database 0, two
476
+ # messages will be published via Pub/Sub:
477
+ #
478
+ # PUBLISH __keyspace@0__:foo del
479
+ # PUBLISH __keyevent@0__:del foo
480
+ #
481
+ # It is possible to select the events that Redis will notify among a set
482
+ # of classes. Every class is identified by a single character:
483
+ #
484
+ # K Keyspace events, published with __keyspace@<db>__ prefix.
485
+ # E Keyevent events, published with __keyevent@<db>__ prefix.
486
+ # g Generic commands (non-type specific) like DEL, EXPIRE, RENAME, ...
487
+ # $ String commands
488
+ # l List commands
489
+ # s Set commands
490
+ # h Hash commands
491
+ # z Sorted set commands
492
+ # x Expired events (events generated every time a key expires)
493
+ # e Evicted events (events generated when a key is evicted for maxmemory)
494
+ # A Alias for g$lshzxe, so that the "AKE" string means all the events.
495
+ #
496
+ # The "notify-keyspace-events" takes as argument a string that is composed
497
+ # by zero or multiple characters. The empty string means that notifications
498
+ # are disabled at all.
499
+ #
500
+ # Example: to enable list and generic events, from the point of view of the
501
+ # event name, use:
502
+ #
503
+ # notify-keyspace-events Elg
504
+ #
505
+ # Example 2: to get the stream of the expired keys subscribing to channel
506
+ # name __keyevent@0__:expired use:
507
+ #
508
+ # notify-keyspace-events Ex
509
+ #
510
+ # By default all notifications are disabled because most users don't need
511
+ # this feature and the feature has some overhead. Note that if you don't
512
+ # specify at least one of K or E, no events will be delivered.
513
+ # notify-keyspace-events ""
514
+
515
+ ############################### ADVANCED CONFIG ###############################
516
+
517
+ # Hashes are encoded using a memory efficient data structure when they have a
518
+ # small number of entries, and the biggest entry does not exceed a given
519
+ # threshold. These thresholds can be configured using the following directives.
520
+ hash-max-ziplist-entries 512
521
+ hash-max-ziplist-value 64
522
+
523
+ # Similarly to hashes, small lists are also encoded in a special way in order
524
+ # to save a lot of space. The special representation is only used when
525
+ # you are under the following limits:
526
+ list-max-ziplist-entries 512
527
+ list-max-ziplist-value 64
528
+
529
+ # Sets have a special encoding in just one case: when a set is composed
530
+ # of just strings that happens to be integers in radix 10 in the range
531
+ # of 64 bit signed integers.
532
+ # The following configuration setting sets the limit in the size of the
533
+ # set in order to use this special memory saving encoding.
534
+ set-max-intset-entries 512
535
+
536
+ # Similarly to hashes and lists, sorted sets are also specially encoded in
537
+ # order to save a lot of space. This encoding is only used when the length and
538
+ # elements of a sorted set are below the following limits:
539
+ zset-max-ziplist-entries 128
540
+ zset-max-ziplist-value 64
541
+
542
+ # Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in
543
+ # order to help rehashing the main Redis hash table (the one mapping top-level
544
+ # keys to values). The hash table implementation Redis uses (see dict.c)
545
+ # performs a lazy rehashing: the more operation you run into an hash table
546
+ # that is rehashing, the more rehashing "steps" are performed, so if the
547
+ # server is idle the rehashing is never complete and some more memory is used
548
+ # by the hash table.
549
+ #
550
+ # The default is to use this millisecond 10 times every second in order to
551
+ # active rehashing the main dictionaries, freeing memory when possible.
552
+ #
553
+ # If unsure:
554
+ # use "activerehashing no" if you have hard latency requirements and it is
555
+ # not a good thing in your environment that Redis can reply form time to time
556
+ # to queries with 2 milliseconds delay.
557
+ #
558
+ # use "activerehashing yes" if you don't have such hard requirements but
559
+ # want to free memory asap when possible.
560
+ activerehashing <%= redis_activerehashing %>
561
+
562
+ # The client output buffer limits can be used to force disconnection of clients
563
+ # that are not reading data from the server fast enough for some reason (a
564
+ # common reason is that a Pub/Sub client can't consume messages as fast as the
565
+ # publisher can produce them).
566
+ #
567
+ # The limit can be set differently for the three different classes of clients:
568
+ #
569
+ # normal -> normal clients
570
+ # slave -> slave clients and MONITOR clients
571
+ # pubsub -> clients subcribed to at least one pubsub channel or pattern
572
+ #
573
+ # The syntax of every client-output-buffer-limit directive is the following:
574
+ #
575
+ # client-output-buffer-limit <class> <hard limit> <soft limit> <soft seconds>
576
+ #
577
+ # A client is immediately disconnected once the hard limit is reached, or if
578
+ # the soft limit is reached and remains reached for the specified number of
579
+ # seconds (continuously).
580
+ # So for instance if the hard limit is 32 megabytes and the soft limit is
581
+ # 16 megabytes / 10 seconds, the client will get disconnected immediately
582
+ # if the size of the output buffers reach 32 megabytes, but will also get
583
+ # disconnected if the client reaches 16 megabytes and continuously overcomes
584
+ # the limit for 10 seconds.
585
+ #
586
+ # By default normal clients are not limited because they don't receive data
587
+ # without asking (in a push way), but just after a request, so only
588
+ # asynchronous clients may create a scenario where data is requested faster
589
+ # than it can read.
590
+ #
591
+ # Instead there is a default limit for pubsub and slave clients, since
592
+ # subscribers and slaves receive data in a push fashion.
593
+ #
594
+ # Both the hard or the soft limit can be disabled just setting it to zero.
595
+ client-output-buffer-limit normal 0 0 0
596
+ client-output-buffer-limit slave 256mb 64mb 60
597
+ client-output-buffer-limit pubsub 32mb 8mb 60
598
+
599
+ # Redis calls an internal function to perform many background tasks, like
600
+ # closing connections of clients in timeot, purging expired keys that are
601
+ # never requested, and so forth.
602
+ #
603
+ # Not all tasks are perforemd with the same frequency, but Redis checks for
604
+ # tasks to perform accordingly to the specified "hz" value.
605
+ #
606
+ # By default "hz" is set to 10. Raising the value will use more CPU when
607
+ # Redis is idle, but at the same time will make Redis more responsive when
608
+ # there are many keys expiring at the same time, and timeouts may be
609
+ # handled with more precision.
610
+ #
611
+ # The range is between 1 and 500, however a value over 100 is usually not
612
+ # a good idea. Most users should use the default of 10 and raise this up to
613
+ # 100 only in environments where very low latency is required.
614
+ # hz 10
615
+
616
+ ################################## INCLUDES ###################################
617
+
618
+ # Include one or more other config files here. This is useful if you
619
+ # have a standard template that goes to all Redis server but also need
620
+ # to customize a few per-server settings. Include files can include
621
+ # other files, so use this wisely.
622
+ #
623
+ # include /path/to/local.conf
624
+ # include /path/to/other.conf
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: peony
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Zhan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-20 00:00:00.000000000 Z
11
+ date: 2013-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -71,16 +71,35 @@ files:
71
71
  - lib/peony/default.rb
72
72
  - lib/peony/rake.rb
73
73
  - lib/peony/settings.rb
74
- - lib/peony/template_binding.rb
75
74
  - lib/peony/utils.rb
76
75
  - lib/peony/version.rb
77
76
  - peony.gemspec
77
+ - recipes/db/mongo.rake
78
+ - recipes/db/mysql.rake
78
79
  - recipes/db/pg.rake
80
+ - recipes/db/redis.rake
81
+ - recipes/elasticsearch.rake
82
+ - recipes/httpd.rake
79
83
  - recipes/nginx.rake
80
84
  - recipes/nginx/www.rake
85
+ - recipes/php.rake
81
86
  - spec/settings_in_rake_spec.rb
82
87
  - spec/settings_spec.rb
83
88
  - spec/spec_helper.rb
89
+ - templates/elasticsearch/config.yml.erb
90
+ - templates/elasticsearch/logging.yml.erb
91
+ - templates/httpd/extra/httpd-autoindex.conf.erb
92
+ - templates/httpd/extra/httpd-dav.conf.erb
93
+ - templates/httpd/extra/httpd-info.conf.erb
94
+ - templates/httpd/extra/httpd-languages.conf.erb
95
+ - templates/httpd/extra/httpd-mpm.conf.erb
96
+ - templates/httpd/extra/httpd-multilang-errordoc.conf.erb
97
+ - templates/httpd/httpd.conf.erb
98
+ - templates/httpd/magic.erb
99
+ - templates/httpd/mime.types.erb
100
+ - templates/mongo/master.conf.erb
101
+ - templates/mongo/slave.conf.erb
102
+ - templates/mysql/my.cnf.erb
84
103
  - templates/nginx/conf/fastcgi.conf
85
104
  - templates/nginx/conf/fastcgi.conf.default
86
105
  - templates/nginx/conf/fastcgi_params
@@ -96,8 +115,10 @@ files:
96
115
  - templates/nginx/conf/uwsgi_params
97
116
  - templates/nginx/conf/uwsgi_params.default
98
117
  - templates/nginx/conf/win-utf
118
+ - templates/nginx/sites-enabled/php.conf.erb
99
119
  - templates/nginx/sites-enabled/static.conf.erb
100
120
  - templates/nginx/www.conf.erb
121
+ - templates/redis.conf.erb
101
122
  homepage: https://github.com/jameszhan/peony
102
123
  licenses:
103
124
  - MIT