12 lines
238 B
PHP
12 lines
238 B
PHP
<?php
|
|
|
|
define('CACHE_TTL_FIVE_MINUTES', 300);
|
|
define('CACHE_TTL_FIFTEEN_MINUTES', 900);
|
|
|
|
define('CACHE_TTL_HALF_HOUR', 1800);
|
|
define('CACHE_TTL_ONE_HOUR', 3600);
|
|
|
|
define('CACHE_TTL_ONE_DAY', 86400);
|
|
|
|
define('CACHE_TTL_ONE_WEEK', 604800);
|