Thomas Bruederli
2013-10-30 4c02ef0c5c23fc31d5d89ccd012698ea325acc1b
commit | author | age
48e9c1 1 <?php
T 2
3 // By default this plugin stores attachments in filesystem
4 // and copies them into sql database.
5 // In environments with replicated database it is possible
6 // to use memcache as a fallback when write-master is unavailable.
bcedf0 7 $config['redundant_attachments_memcache'] = false;
48e9c1 8
df9d00 9 // Attachment data expires after specied TTL time in seconds (max.2592000).
AM 10 // Default is 12 hours.
bcedf0 11 $config['redundant_attachments_cache_ttl'] = 12 * 60 * 60;
48e9c1 12
T 13 ?>