You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.inc.php.dist 702B

1234567891011121314151617
  1. <?php
  2. // By default this plugin stores attachments in filesystem
  3. // and copies them into sql database.
  4. // In environments with replicated database it is possible
  5. // to use memcache as a fallback when write-master is unavailable.
  6. // ------------------------------------------------------------
  7. // WARNING: Remember to also set memcache_max_allowed_packet in
  8. // config to match with expected max attachment size.
  9. // ------------------------------------------------------------
  10. $config['redundant_attachments_memcache'] = false;
  11. // Attachment data expires after specified TTL time in seconds (max.2592000).
  12. // Default is 12 hours.
  13. $config['redundant_attachments_cache_ttl'] = 12 * 60 * 60;
  14. ?>