2004-07-22 23:42:50 +00:00
|
|
|
<?php
|
|
|
|
|
2004-07-23 04:04:21 +00:00
|
|
|
// Define the lifetime of public php pages.
|
|
|
|
// define to zero to turn of caching for these pages.
|
2007-01-11 17:39:23 +00:00
|
|
|
define('TEAM_PAGE_TTL', 3600);
|
|
|
|
define('USER_PAGE_TTL', 3600);
|
|
|
|
define('USER_HOST_TTL', 3600);
|
|
|
|
define('USER_PROFILE_TTL', 3600);
|
|
|
|
define('TOP_PAGES_TTL', 43200);
|
|
|
|
define('INDEX_PAGE_TTL', 3600);
|
2014-08-14 16:23:13 +00:00
|
|
|
define('STATUS_PAGE_TTL', 3600);
|
2004-07-22 23:42:50 +00:00
|
|
|
|
2014-07-14 18:26:32 +00:00
|
|
|
// max allowed cache usage
|
|
|
|
//
|
2007-01-11 17:39:23 +00:00
|
|
|
define('MAX_CACHE_USAGE', 104857600);
|
2004-07-23 04:04:21 +00:00
|
|
|
|
|
|
|
// Number of page views between cache size checks
|
2007-01-11 17:39:23 +00:00
|
|
|
define('CACHE_SIZE_CHECK_FREQ', 1000);
|
2004-07-23 04:04:21 +00:00
|
|
|
|
2004-07-22 23:42:50 +00:00
|
|
|
?>
|