-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapi.php
248 lines (227 loc) · 7.57 KB
/
api.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<?php
/**
* Object Cache API
*
* @subpackage Cache
*/
use WPMultiObjectCache\Manager;
/**
* Sets up Object Cache Global and assigns it.
*/
function wp_cache_init()
{
try {
Manager::initialize();
} catch (Exception $exception) {
trigger_error('Cache could not be initialized.', E_USER_ERROR);
}
}
/**
* Adds data to the cache, if the cache key doesn't already exist.
*
* @param int|string $key The cache key to use for retrieval later.
* @param mixed $data The data to add to the cache.
* @param string $group Optional. The group to add the cache to. Enables the same key
* to be used across groups. Default empty.
* @param int $expire Optional. When the cache data should expire, in seconds.
* Default 0 (no expiration).
*
* @return bool False if cache key and group already exist, true on success.
*/
function wp_cache_add($key, $data, $group = '', $expire = 0)
{
$object_cache = Manager::getPool($group);
return $object_cache->add($key, $data, $expire);
}
/**
* Closes the cache.
*
* This function has ceased to do anything since src 2.5. The
* functionality was removed along with the rest of the persistent cache.
*
* This does not mean that plugins can't implement this function when they need
* to make sure that the cache is cleaned up after src no longer needs it.
*
* @return true Always returns true.
*/
function wp_cache_close()
{
return true;
}
/**
* Decrements numeric cache item's value.
*
* @param int|string $key The cache key to decrement.
* @param int $offset Optional. The amount by which to decrement the item's value. Default 1.
* @param string $group Optional. The group the key is in. Default empty.
*
* @return false|int False on failure, the item's new value on success.
*/
function wp_cache_decr($key, $offset = 1, $group = '')
{
return Manager::getPool($group)->decrease($key, $offset);
}
/**
* Removes the cache contents matching key and group.
*
* @param int|string $key What the contents in the cache are called.
* @param string $group Optional. Where the cache contents are grouped. Default empty.
*
* @return bool True on successful removal, false on failure.
*/
function wp_cache_delete($key, $group = '')
{
return Manager::getPool($group)->delete($key);
}
/**
* Removes all cache items.
*
* @param string $group Optional. Where the cache contents are grouped. Default empty.
*
* @return bool False on failure, true on success
*/
function wp_cache_flush($group = null)
{
// No group supplied, flush everything.
if (null === $group) {
return wp_cache_flush_all();
}
// Flush specific group.
return Manager::getPool($group)->clear();
}
/**
* Removes all cache items from all pools.
*
* @return bool False on failure, true on success
*/
function wp_cache_flush_all()
{
$success = true;
$pools = Manager::getPools();
foreach ($pools as $pool) {
// @todo track status per controller for request?
$success = $pool->clear() && $success;
}
return $success;
}
/**
* Retrieves the cache contents from the cache by key and group.
*
* @param int|string $key The key under which the cache contents are stored.
* @param string $group Optional. Where the cache contents are grouped. Default empty.
* @param bool $force Optional. Whether to force an update of the local cache from the persistent
* cache. Default false.
* @param bool $found Optional. Whether the key was found in the cache. Disambiguates a return of false,
* a storable value. Passed by reference. Default null.
*
* @return bool|mixed False on failure to retrieve contents or the cache
* contents on success
*/
function wp_cache_get($key, $group = '', $force = false, &$found = null)
{
return Manager::getPool($group)->get($key, $force, $found);
}
/**
* Increment numeric cache item's value
*
* @param int|string $key The key for the cache contents that should be incremented.
* @param int $offset Optional. The amount by which to increment the item's value. Default 1.
* @param string $group Optional. The group the key is in. Default empty.
*
* @return false|int False on failure, the item's new value on success.
*/
function wp_cache_incr($key, $offset = 1, $group = '')
{
return Manager::getPool($group)->increase($key, $offset);
}
/**
* Replaces the contents of the cache with new data.
*
* @param int|string $key The key for the cache data that should be replaced.
* @param mixed $data The new data to store in the cache.
* @param string $group Optional. The group for the cache data that should be replaced.
* Default empty.
* @param int $expire Optional. When to expire the cache contents, in seconds.
* Default 0 (no expiration).
*
* @return bool False if original value does not exist, true if contents were replaced
*/
function wp_cache_replace($key, $data, $group = '', $expire = 0)
{
return Manager::getPool($group)->replace($key, $data, $expire);
}
/**
* Saves the data to the cache.
*
* Differs from wp_cache_add() and wp_cache_replace() in that it will always write data.
*
* @param int|string $key The cache key to use for retrieval later.
* @param mixed $data The contents to store in the cache.
* @param string $group Optional. Where to group the cache contents. Enables the same key
* to be used across groups. Default empty.
* @param int $expire Optional. When to expire the cache contents, in seconds.
* Default 0 (no expiration).
*
* @return bool False on failure, true on success
*/
function wp_cache_set($key, $data, $group = '', $expire = 0)
{
return Manager::getPool($group)->set($key, $data, $expire);
}
/**
* Switches the internal blog ID.
*
* This changes the blog id used to create keys in blog specific groups.
*
* @param int $blog_id Site ID.
*/
function wp_cache_switch_to_blog($blog_id)
{
Manager::switchToBlog($blog_id);
}
/**
* Adds a group or set of groups to the list of global groups.
*
* @param string|array $groups A group or an array of groups to add.
*/
function wp_cache_add_global_groups($groups)
{
$groups = (array)$groups;
foreach ($groups as $group) {
Manager::addGroupAlias('', $group);
}
}
/**
* Adds a group or set of groups to the list of non-persistent groups.
*
* @param string|array $groups A group or an array of groups to add.
*/
function wp_cache_add_non_persistent_groups($groups)
{
// Default cache doesn't persist so nothing to do here.
$groups = (array)$groups;
foreach ($groups as $group) {
Manager::addGroupAlias('non-persistent', $group);
}
}
/**
* Reset internal cache keys and structures.
*
* If the cache back end uses global blog or site IDs as part of its cache keys,
* this function instructs the back end to reset those keys and perform any cleanup
* since blog or site IDs have changed since cache init.
*
* This function is deprecated. Use wp_cache_switch_to_blog() instead of this
* function when preparing the cache for a blog switch. For clearing the cache
* during unit tests, consider using wp_cache_init(). wp_cache_init() is not
* recommended outside of unit tests as the performance penalty for using it is
* high.
*
* @since 2.6.0
* @deprecated 3.5.0 WP_Object_Cache::reset()
* @see WP_Object_Cache::reset()
*/
function wp_cache_reset()
{
_deprecated_function(__FUNCTION__, '3.5.0');
}