diff options
| author | Arnaud Cogoluègnes <acogoluegnes@gmail.com> | 2016-11-28 15:19:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-28 15:19:13 +0100 |
| commit | ee793bd498ff8e7ea29a94725dba5b808c01995f (patch) | |
| tree | b45543605e7420985a97f1398a2576b4d45664e6 /docs | |
| parent | e184cb08323a7ff14706aaefd033a0ff92dce2e5 (diff) | |
| parent | 0a6c74ba821ba932f16bfe3ee013c43d0fac6dca (diff) | |
| download | rabbitmq-server-git-ee793bd498ff8e7ea29a94725dba5b808c01995f.tar.gz | |
Merge pull request #1039 from rabbitmq/rabbitmq-server-1026
Make it possible to disable background GC
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/rabbitmq.config.example | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/rabbitmq.config.example b/docs/rabbitmq.config.example index f425726721..74911df9ae 100644 --- a/docs/rabbitmq.config.example +++ b/docs/rabbitmq.config.example @@ -312,7 +312,15 @@ %% Size in bytes below which to embed messages in the queue index. See %% http://www.rabbitmq.com/persistence-conf.html %% - %% {queue_index_embed_msgs_below, 4096} + %% {queue_index_embed_msgs_below, 4096}, + + %% Whether or not to enable background GC. + %% + %% {background_gc_enabled, true}, + %% + %% Interval (in milliseconds) at which we run background GC. + %% + %% {background_gc_target_interval, 60000} ]}, |
