(dev/core#174) Update top-level interfaces to show PSR-16 support
[civicrm-core.git] / CRM / Utils / Cache / Interface.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2018
32 *
33 * CRM_Utils_Cache_Interface is a long-standing interface used within CiviCRM
34 * for interacting with a cache service. In style and substance, it is extremely
35 * similar to PHP-FIG's SimpleCache interface (PSR-16). Consequently, beginning
36 * with CiviCRM v5.4, this extends \Psr\SimpleCache\CacheInterface.
37 *
38 * @see https://www.php-fig.org/psr/psr-16/
39 */
40 interface CRM_Utils_Cache_Interface extends \Psr\SimpleCache\CacheInterface {
41
42 /**
43 * Set the value in the cache.
44 *
45 * @param string $key
46 * @param mixed $value
47 * @param null|int|\DateInterval $ttl
48 * @return bool
49 */
50 public function set($key, $value, $ttl = NULL);
51
52 /**
53 * Get a value from the cache.
54 *
55 * @param string $key
56 * @param mixed $default
57 * @return mixed
58 * The previously set value value, or $default (NULL).
59 */
60 public function get($key, $default = NULL);
61
62 /**
63 * Delete a value from the cache.
64 *
65 * @param string $key
66 * @return bool
67 */
68 public function delete($key);
69
70 /**
71 * Delete all values from the cache.
72 *
73 * NOTE: flush() and clear() should be aliases. flush() is specified by
74 * Civi's traditional interface, and clear() is specified by PSR-16.
75 *
76 * @return bool
77 * @see clear
78 * @deprecated
79 */
80 public function flush();
81
82 /**
83 * Delete all values from the cache.
84 *
85 * NOTE: flush() and clear() should be aliases. flush() is specified by
86 * Civi's traditional interface, and clear() is specified by PSR-16.
87 *
88 * @return bool
89 * @see flush
90 */
91 public function clear();
92
93 /**
94 * Determines whether an item is present in the cache.
95 *
96 * NOTE: It is recommended that has() is only to be used for cache warming type purposes
97 * and not to be used within your live applications operations for get/set, as this method
98 * is subject to a race condition where your has() will return true and immediately after,
99 * another script can remove it making the state of your app out of date.
100 *
101 * @param string $key The cache item key.
102 *
103 * @return bool
104 */
105 public function has($key);
106
107 }