MediaWiki master
ExpirationAwareness.php
Go to the documentation of this file.
1<?php
22
32 public const TTL_SECOND = 1;
34 public const TTL_MINUTE = 60;
36 public const TTL_HOUR = 3_600;
38 public const TTL_DAY = 86_400;
40 public const TTL_WEEK = 604_800;
42 public const TTL_MONTH = 2_592_000;
44 public const TTL_YEAR = 31_536_000;
45
47 public const TTL_PROC_SHORT = 3;
49 public const TTL_PROC_LONG = 30;
50
52 public const TTL_INDEFINITE = 0;
54 public const TTL_UNCACHEABLE = -1;
55}
Generic interface providing Time-To-Live constants for expirable object storage.