Better apache mem cache tuneable values

By default our apache mod mem cache tuneables are too conservative to
cache the zuul status.json. Bump the numbers to something reasonable for
the status.json file. This means increasing the total cache size and the
max object/stream sizes.

Change-Id: Icf6ad2591e67d5916efbd65ddf93379d2c3ffc69
This commit is contained in:
Clark Boylan 2014-06-03 20:51:18 -07:00
parent 0aff17e1b3
commit 5fa31b09da

View File

@ -27,6 +27,13 @@
CacheDefaultExpire 5
<IfModule mod_mem_cache.c>
CacheEnable mem /status.json
# 12MByte total cache size.
MCacheSize 12288
MCacheMaxObjectCount 10
MCacheMinObjectSize 1
# 8MByte max size per cache entry
MCacheMaxObjectSize 8388608
MCacheMaxStreamingBuffer 8388608
</IfModule>
</IfModule>