author | ymh <ymh.work@gmail.com> |
Mon, 14 Oct 2019 17:39:30 +0200 | |
changeset 7 | cf61fcea0001 |
parent 5 | 5e2f62d02dcd |
child 9 | 177826044cd9 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* Object Cache API |
|
4 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5 |
* @link https://codex.wordpress.org/Class_Reference/WP_Object_Cache |
0 | 6 |
* |
7 |
* @package WordPress |
|
8 |
* @subpackage Cache |
|
9 |
*/ |
|
10 |
||
11 |
/** |
|
12 |
* Adds data to the cache, if the cache key doesn't already exist. |
|
13 |
* |
|
14 |
* @since 2.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
15 |
* |
0 | 16 |
* @see WP_Object_Cache::add() |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
17 |
* @global WP_Object_Cache $wp_object_cache Object cache global instance. |
0 | 18 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
19 |
* @param int|string $key The cache key to use for retrieval later. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
20 |
* @param mixed $data The data to add to the cache. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
21 |
* @param string $group Optional. The group to add the cache to. Enables the same key |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
22 |
* to be used across groups. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
23 |
* @param int $expire Optional. When the cache data should expire, in seconds. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
24 |
* Default 0 (no expiration). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
25 |
* @return bool False if cache key and group already exist, true on success. |
0 | 26 |
*/ |
27 |
function wp_cache_add( $key, $data, $group = '', $expire = 0 ) { |
|
28 |
global $wp_object_cache; |
|
29 |
||
30 |
return $wp_object_cache->add( $key, $data, $group, (int) $expire ); |
|
31 |
} |
|
32 |
||
33 |
/** |
|
34 |
* Closes the cache. |
|
35 |
* |
|
36 |
* This function has ceased to do anything since WordPress 2.5. The |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
37 |
* functionality was removed along with the rest of the persistent cache. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
38 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
39 |
* This does not mean that plugins can't implement this function when they need |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
40 |
* to make sure that the cache is cleaned up after WordPress no longer needs it. |
0 | 41 |
* |
42 |
* @since 2.0.0 |
|
43 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
44 |
* @return true Always returns true. |
0 | 45 |
*/ |
46 |
function wp_cache_close() { |
|
47 |
return true; |
|
48 |
} |
|
49 |
||
50 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
51 |
* Decrements numeric cache item's value. |
0 | 52 |
* |
53 |
* @since 3.3.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
54 |
* |
0 | 55 |
* @see WP_Object_Cache::decr() |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
56 |
* @global WP_Object_Cache $wp_object_cache Object cache global instance. |
0 | 57 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
58 |
* @param int|string $key The cache key to decrement. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
59 |
* @param int $offset Optional. The amount by which to decrement the item's value. Default 1. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
60 |
* @param string $group Optional. The group the key is in. Default empty. |
0 | 61 |
* @return false|int False on failure, the item's new value on success. |
62 |
*/ |
|
63 |
function wp_cache_decr( $key, $offset = 1, $group = '' ) { |
|
64 |
global $wp_object_cache; |
|
65 |
||
66 |
return $wp_object_cache->decr( $key, $offset, $group ); |
|
67 |
} |
|
68 |
||
69 |
/** |
|
70 |
* Removes the cache contents matching key and group. |
|
71 |
* |
|
72 |
* @since 2.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
73 |
* |
0 | 74 |
* @see WP_Object_Cache::delete() |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
75 |
* @global WP_Object_Cache $wp_object_cache Object cache global instance. |
0 | 76 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
77 |
* @param int|string $key What the contents in the cache are called. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
78 |
* @param string $group Optional. Where the cache contents are grouped. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
79 |
* @return bool True on successful removal, false on failure. |
0 | 80 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
81 |
function wp_cache_delete( $key, $group = '' ) { |
0 | 82 |
global $wp_object_cache; |
83 |
||
84 |
return $wp_object_cache->delete($key, $group); |
|
85 |
} |
|
86 |
||
87 |
/** |
|
88 |
* Removes all cache items. |
|
89 |
* |
|
90 |
* @since 2.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
91 |
* |
0 | 92 |
* @see WP_Object_Cache::flush() |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
93 |
* @global WP_Object_Cache $wp_object_cache Object cache global instance. |
0 | 94 |
* |
95 |
* @return bool False on failure, true on success |
|
96 |
*/ |
|
97 |
function wp_cache_flush() { |
|
98 |
global $wp_object_cache; |
|
99 |
||
100 |
return $wp_object_cache->flush(); |
|
101 |
} |
|
102 |
||
103 |
/** |
|
104 |
* Retrieves the cache contents from the cache by key and group. |
|
105 |
* |
|
106 |
* @since 2.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
107 |
* |
0 | 108 |
* @see WP_Object_Cache::get() |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
109 |
* @global WP_Object_Cache $wp_object_cache Object cache global instance. |
0 | 110 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
111 |
* @param int|string $key The key under which the cache contents are stored. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
112 |
* @param string $group Optional. Where the cache contents are grouped. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
113 |
* @param bool $force Optional. Whether to force an update of the local cache from the persistent |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
114 |
* cache. Default false. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
115 |
* @param bool $found Optional. Whether the key was found in the cache (passed by reference). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
116 |
* Disambiguates a return of false, a storable value. Default null. |
0 | 117 |
* @return bool|mixed False on failure to retrieve contents or the cache |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
118 |
* contents on success |
0 | 119 |
*/ |
120 |
function wp_cache_get( $key, $group = '', $force = false, &$found = null ) { |
|
121 |
global $wp_object_cache; |
|
122 |
||
123 |
return $wp_object_cache->get( $key, $group, $force, $found ); |
|
124 |
} |
|
125 |
||
126 |
/** |
|
127 |
* Increment numeric cache item's value |
|
128 |
* |
|
129 |
* @since 3.3.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
130 |
* |
0 | 131 |
* @see WP_Object_Cache::incr() |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
132 |
* @global WP_Object_Cache $wp_object_cache Object cache global instance. |
0 | 133 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
134 |
* @param int|string $key The key for the cache contents that should be incremented. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
135 |
* @param int $offset Optional. The amount by which to increment the item's value. Default 1. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
136 |
* @param string $group Optional. The group the key is in. Default empty. |
0 | 137 |
* @return false|int False on failure, the item's new value on success. |
138 |
*/ |
|
139 |
function wp_cache_incr( $key, $offset = 1, $group = '' ) { |
|
140 |
global $wp_object_cache; |
|
141 |
||
142 |
return $wp_object_cache->incr( $key, $offset, $group ); |
|
143 |
} |
|
144 |
||
145 |
/** |
|
146 |
* Sets up Object Cache Global and assigns it. |
|
147 |
* |
|
148 |
* @since 2.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
149 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
150 |
* @global WP_Object_Cache $wp_object_cache |
0 | 151 |
*/ |
152 |
function wp_cache_init() { |
|
153 |
$GLOBALS['wp_object_cache'] = new WP_Object_Cache(); |
|
154 |
} |
|
155 |
||
156 |
/** |
|
157 |
* Replaces the contents of the cache with new data. |
|
158 |
* |
|
159 |
* @since 2.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
160 |
* |
0 | 161 |
* @see WP_Object_Cache::replace() |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
162 |
* @global WP_Object_Cache $wp_object_cache Object cache global instance. |
0 | 163 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
164 |
* @param int|string $key The key for the cache data that should be replaced. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
165 |
* @param mixed $data The new data to store in the cache. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
166 |
* @param string $group Optional. The group for the cache data that should be replaced. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
167 |
* Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
168 |
* @param int $expire Optional. When to expire the cache contents, in seconds. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
169 |
* Default 0 (no expiration). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
170 |
* @return bool False if original value does not exist, true if contents were replaced |
0 | 171 |
*/ |
172 |
function wp_cache_replace( $key, $data, $group = '', $expire = 0 ) { |
|
173 |
global $wp_object_cache; |
|
174 |
||
175 |
return $wp_object_cache->replace( $key, $data, $group, (int) $expire ); |
|
176 |
} |
|
177 |
||
178 |
/** |
|
179 |
* Saves the data to the cache. |
|
180 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
181 |
* Differs from wp_cache_add() and wp_cache_replace() in that it will always write data. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
182 |
* |
5 | 183 |
* @since 2.0.0 |
184 |
* |
|
0 | 185 |
* @see WP_Object_Cache::set() |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
186 |
* @global WP_Object_Cache $wp_object_cache Object cache global instance. |
0 | 187 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
188 |
* @param int|string $key The cache key to use for retrieval later. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
189 |
* @param mixed $data The contents to store in the cache. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
190 |
* @param string $group Optional. Where to group the cache contents. Enables the same key |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
191 |
* to be used across groups. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
192 |
* @param int $expire Optional. When to expire the cache contents, in seconds. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
193 |
* Default 0 (no expiration). |
0 | 194 |
* @return bool False on failure, true on success |
195 |
*/ |
|
196 |
function wp_cache_set( $key, $data, $group = '', $expire = 0 ) { |
|
197 |
global $wp_object_cache; |
|
198 |
||
199 |
return $wp_object_cache->set( $key, $data, $group, (int) $expire ); |
|
200 |
} |
|
201 |
||
202 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
203 |
* Switches the internal blog ID. |
0 | 204 |
* |
205 |
* This changes the blog id used to create keys in blog specific groups. |
|
206 |
* |
|
207 |
* @since 3.5.0 |
|
208 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
209 |
* @see WP_Object_Cache::switch_to_blog() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
210 |
* @global WP_Object_Cache $wp_object_cache Object cache global instance. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
211 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
212 |
* @param int $blog_id Site ID. |
0 | 213 |
*/ |
214 |
function wp_cache_switch_to_blog( $blog_id ) { |
|
215 |
global $wp_object_cache; |
|
216 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
217 |
$wp_object_cache->switch_to_blog( $blog_id ); |
0 | 218 |
} |
219 |
||
220 |
/** |
|
221 |
* Adds a group or set of groups to the list of global groups. |
|
222 |
* |
|
223 |
* @since 2.6.0 |
|
224 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
225 |
* @see WP_Object_Cache::add_global_groups() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
226 |
* @global WP_Object_Cache $wp_object_cache Object cache global instance. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
227 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
228 |
* @param string|array $groups A group or an array of groups to add. |
0 | 229 |
*/ |
230 |
function wp_cache_add_global_groups( $groups ) { |
|
231 |
global $wp_object_cache; |
|
232 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
233 |
$wp_object_cache->add_global_groups( $groups ); |
0 | 234 |
} |
235 |
||
236 |
/** |
|
237 |
* Adds a group or set of groups to the list of non-persistent groups. |
|
238 |
* |
|
239 |
* @since 2.6.0 |
|
240 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
241 |
* @param string|array $groups A group or an array of groups to add. |
0 | 242 |
*/ |
243 |
function wp_cache_add_non_persistent_groups( $groups ) { |
|
244 |
// Default cache doesn't persist so nothing to do here. |
|
245 |
} |
|
246 |
||
247 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
248 |
* Reset internal cache keys and structures. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
249 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
250 |
* If the cache back end uses global blog or site IDs as part of its cache keys, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
251 |
* this function instructs the back end to reset those keys and perform any cleanup |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
252 |
* since blog or site IDs have changed since cache init. |
0 | 253 |
* |
254 |
* This function is deprecated. Use wp_cache_switch_to_blog() instead of this |
|
255 |
* function when preparing the cache for a blog switch. For clearing the cache |
|
256 |
* during unit tests, consider using wp_cache_init(). wp_cache_init() is not |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
257 |
* recommended outside of unit tests as the performance penalty for using it is |
0 | 258 |
* high. |
259 |
* |
|
260 |
* @since 2.6.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
261 |
* @deprecated 3.5.0 WP_Object_Cache::reset() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
262 |
* @see WP_Object_Cache::reset() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
263 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
264 |
* @global WP_Object_Cache $wp_object_cache Object cache global instance. |
0 | 265 |
*/ |
266 |
function wp_cache_reset() { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
267 |
_deprecated_function( __FUNCTION__, '3.5.0', 'WP_Object_Cache::reset()' ); |
0 | 268 |
|
269 |
global $wp_object_cache; |
|
270 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
271 |
$wp_object_cache->reset(); |
0 | 272 |
} |
273 |
||
274 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
275 |
* Core class that implements an object cache. |
0 | 276 |
* |
277 |
* The WordPress Object Cache is used to save on trips to the database. The |
|
278 |
* Object Cache stores all of the cache data to memory and makes the cache |
|
279 |
* contents available by using a key, which is used to name and later retrieve |
|
280 |
* the cache contents. |
|
281 |
* |
|
282 |
* The Object Cache can be replaced by other caching mechanisms by placing files |
|
283 |
* in the wp-content folder which is looked at in wp-settings. If that file |
|
284 |
* exists, then this file will not be included. |
|
285 |
* |
|
5 | 286 |
* @since 2.0.0 |
0 | 287 |
*/ |
288 |
class WP_Object_Cache { |
|
289 |
||
290 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
291 |
* Holds the cached objects. |
0 | 292 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
293 |
* @since 2.0.0 |
0 | 294 |
* @var array |
295 |
*/ |
|
5 | 296 |
private $cache = array(); |
0 | 297 |
|
298 |
/** |
|
299 |
* The amount of times the cache data was already stored in the cache. |
|
300 |
* |
|
301 |
* @since 2.5.0 |
|
302 |
* @var int |
|
303 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
304 |
public $cache_hits = 0; |
0 | 305 |
|
306 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
307 |
* Amount of times the cache did not have the request in cache. |
0 | 308 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
309 |
* @since 2.0.0 |
0 | 310 |
* @var int |
311 |
*/ |
|
5 | 312 |
public $cache_misses = 0; |
0 | 313 |
|
314 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
315 |
* List of global cache groups. |
0 | 316 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
317 |
* @since 3.0.0 |
0 | 318 |
* @var array |
319 |
*/ |
|
5 | 320 |
protected $global_groups = array(); |
0 | 321 |
|
322 |
/** |
|
323 |
* The blog prefix to prepend to keys in non-global groups. |
|
324 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
325 |
* @since 3.5.0 |
0 | 326 |
* @var int |
327 |
*/ |
|
5 | 328 |
private $blog_prefix; |
329 |
||
330 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
331 |
* Holds the value of is_multisite(). |
5 | 332 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
333 |
* @since 3.5.0 |
5 | 334 |
* @var bool |
335 |
*/ |
|
336 |
private $multisite; |
|
337 |
||
338 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
339 |
* Makes private properties readable for backward compatibility. |
5 | 340 |
* |
341 |
* @since 4.0.0 |
|
342 |
* |
|
343 |
* @param string $name Property to get. |
|
344 |
* @return mixed Property. |
|
345 |
*/ |
|
346 |
public function __get( $name ) { |
|
347 |
return $this->$name; |
|
348 |
} |
|
349 |
||
350 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
351 |
* Makes private properties settable for backward compatibility. |
5 | 352 |
* |
353 |
* @since 4.0.0 |
|
354 |
* |
|
355 |
* @param string $name Property to set. |
|
356 |
* @param mixed $value Property value. |
|
357 |
* @return mixed Newly-set property. |
|
358 |
*/ |
|
359 |
public function __set( $name, $value ) { |
|
360 |
return $this->$name = $value; |
|
361 |
} |
|
362 |
||
363 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
364 |
* Makes private properties checkable for backward compatibility. |
5 | 365 |
* |
366 |
* @since 4.0.0 |
|
367 |
* |
|
368 |
* @param string $name Property to check if set. |
|
369 |
* @return bool Whether the property is set. |
|
370 |
*/ |
|
371 |
public function __isset( $name ) { |
|
372 |
return isset( $this->$name ); |
|
373 |
} |
|
374 |
||
375 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
376 |
* Makes private properties un-settable for backward compatibility. |
5 | 377 |
* |
378 |
* @since 4.0.0 |
|
379 |
* |
|
380 |
* @param string $name Property to unset. |
|
381 |
*/ |
|
382 |
public function __unset( $name ) { |
|
383 |
unset( $this->$name ); |
|
384 |
} |
|
0 | 385 |
|
386 |
/** |
|
387 |
* Adds data to the cache if it doesn't already exist. |
|
388 |
* |
|
389 |
* @since 2.0.0 |
|
390 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
391 |
* @uses WP_Object_Cache::_exists() Checks to see if the cache already has data. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
392 |
* @uses WP_Object_Cache::set() Sets the data after the checking the cache |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
393 |
* contents existence. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
394 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
395 |
* @param int|string $key What to call the contents in the cache. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
396 |
* @param mixed $data The contents to store in the cache. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
397 |
* @param string $group Optional. Where to group the cache contents. Default 'default'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
398 |
* @param int $expire Optional. When to expire the cache contents. Default 0 (no expiration). |
0 | 399 |
* @return bool False if cache key and group already exist, true on success |
400 |
*/ |
|
5 | 401 |
public function add( $key, $data, $group = 'default', $expire = 0 ) { |
0 | 402 |
if ( wp_suspend_cache_addition() ) |
403 |
return false; |
|
404 |
||
405 |
if ( empty( $group ) ) |
|
406 |
$group = 'default'; |
|
407 |
||
408 |
$id = $key; |
|
409 |
if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) |
|
410 |
$id = $this->blog_prefix . $key; |
|
411 |
||
412 |
if ( $this->_exists( $id, $group ) ) |
|
413 |
return false; |
|
414 |
||
415 |
return $this->set( $key, $data, $group, (int) $expire ); |
|
416 |
} |
|
417 |
||
418 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
419 |
* Sets the list of global cache groups. |
0 | 420 |
* |
421 |
* @since 3.0.0 |
|
422 |
* |
|
423 |
* @param array $groups List of groups that are global. |
|
424 |
*/ |
|
5 | 425 |
public function add_global_groups( $groups ) { |
0 | 426 |
$groups = (array) $groups; |
427 |
||
428 |
$groups = array_fill_keys( $groups, true ); |
|
429 |
$this->global_groups = array_merge( $this->global_groups, $groups ); |
|
430 |
} |
|
431 |
||
432 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
433 |
* Decrements numeric cache item's value. |
0 | 434 |
* |
435 |
* @since 3.3.0 |
|
436 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
437 |
* @param int|string $key The cache key to decrement. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
438 |
* @param int $offset Optional. The amount by which to decrement the item's value. Default 1. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
439 |
* @param string $group Optional. The group the key is in. Default 'default'. |
0 | 440 |
* @return false|int False on failure, the item's new value on success. |
441 |
*/ |
|
5 | 442 |
public function decr( $key, $offset = 1, $group = 'default' ) { |
0 | 443 |
if ( empty( $group ) ) |
444 |
$group = 'default'; |
|
445 |
||
446 |
if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) |
|
447 |
$key = $this->blog_prefix . $key; |
|
448 |
||
449 |
if ( ! $this->_exists( $key, $group ) ) |
|
450 |
return false; |
|
451 |
||
452 |
if ( ! is_numeric( $this->cache[ $group ][ $key ] ) ) |
|
453 |
$this->cache[ $group ][ $key ] = 0; |
|
454 |
||
455 |
$offset = (int) $offset; |
|
456 |
||
457 |
$this->cache[ $group ][ $key ] -= $offset; |
|
458 |
||
459 |
if ( $this->cache[ $group ][ $key ] < 0 ) |
|
460 |
$this->cache[ $group ][ $key ] = 0; |
|
461 |
||
462 |
return $this->cache[ $group ][ $key ]; |
|
463 |
} |
|
464 |
||
465 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
466 |
* Removes the contents of the cache key in the group. |
0 | 467 |
* |
5 | 468 |
* If the cache key does not exist in the group, then nothing will happen. |
0 | 469 |
* |
470 |
* @since 2.0.0 |
|
471 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
472 |
* @param int|string $key What the contents in the cache are called. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
473 |
* @param string $group Optional. Where the cache contents are grouped. Default 'default'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
474 |
* @param bool $deprecated Optional. Unused. Default false. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
475 |
* @return bool False if the contents weren't deleted and true on success. |
0 | 476 |
*/ |
5 | 477 |
public function delete( $key, $group = 'default', $deprecated = false ) { |
0 | 478 |
if ( empty( $group ) ) |
479 |
$group = 'default'; |
|
480 |
||
481 |
if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) |
|
482 |
$key = $this->blog_prefix . $key; |
|
483 |
||
5 | 484 |
if ( ! $this->_exists( $key, $group ) ) |
0 | 485 |
return false; |
486 |
||
487 |
unset( $this->cache[$group][$key] ); |
|
488 |
return true; |
|
489 |
} |
|
490 |
||
491 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
492 |
* Clears the object cache of all data. |
0 | 493 |
* |
494 |
* @since 2.0.0 |
|
495 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
496 |
* @return true Always returns true. |
0 | 497 |
*/ |
5 | 498 |
public function flush() { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
499 |
$this->cache = array(); |
0 | 500 |
|
501 |
return true; |
|
502 |
} |
|
503 |
||
504 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
505 |
* Retrieves the cache contents, if it exists. |
0 | 506 |
* |
507 |
* The contents will be first attempted to be retrieved by searching by the |
|
508 |
* key in the cache group. If the cache is hit (success) then the contents |
|
509 |
* are returned. |
|
510 |
* |
|
511 |
* On failure, the number of cache misses will be incremented. |
|
512 |
* |
|
513 |
* @since 2.0.0 |
|
514 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
515 |
* @param int|string $key What the contents in the cache are called. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
516 |
* @param string $group Optional. Where the cache contents are grouped. Default 'default'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
517 |
* @param string $force Optional. Unused. Whether to force a refetch rather than relying on the local |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
518 |
* cache. Default false. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
519 |
* @param bool $found Optional. Whether the key was found in the cache (passed by reference). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
520 |
* Disambiguates a return of false, a storable value. Default null. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
521 |
* @return false|mixed False on failure to retrieve contents or the cache contents on success. |
0 | 522 |
*/ |
5 | 523 |
public function get( $key, $group = 'default', $force = false, &$found = null ) { |
0 | 524 |
if ( empty( $group ) ) |
525 |
$group = 'default'; |
|
526 |
||
527 |
if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) |
|
528 |
$key = $this->blog_prefix . $key; |
|
529 |
||
530 |
if ( $this->_exists( $key, $group ) ) { |
|
531 |
$found = true; |
|
532 |
$this->cache_hits += 1; |
|
533 |
if ( is_object($this->cache[$group][$key]) ) |
|
534 |
return clone $this->cache[$group][$key]; |
|
535 |
else |
|
536 |
return $this->cache[$group][$key]; |
|
537 |
} |
|
538 |
||
539 |
$found = false; |
|
540 |
$this->cache_misses += 1; |
|
541 |
return false; |
|
542 |
} |
|
543 |
||
544 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
545 |
* Increments numeric cache item's value. |
0 | 546 |
* |
547 |
* @since 3.3.0 |
|
548 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
549 |
* @param int|string $key The cache key to increment |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
550 |
* @param int $offset Optional. The amount by which to increment the item's value. Default 1. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
551 |
* @param string $group Optional. The group the key is in. Default 'default'. |
0 | 552 |
* @return false|int False on failure, the item's new value on success. |
553 |
*/ |
|
5 | 554 |
public function incr( $key, $offset = 1, $group = 'default' ) { |
0 | 555 |
if ( empty( $group ) ) |
556 |
$group = 'default'; |
|
557 |
||
558 |
if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) |
|
559 |
$key = $this->blog_prefix . $key; |
|
560 |
||
561 |
if ( ! $this->_exists( $key, $group ) ) |
|
562 |
return false; |
|
563 |
||
564 |
if ( ! is_numeric( $this->cache[ $group ][ $key ] ) ) |
|
565 |
$this->cache[ $group ][ $key ] = 0; |
|
566 |
||
567 |
$offset = (int) $offset; |
|
568 |
||
569 |
$this->cache[ $group ][ $key ] += $offset; |
|
570 |
||
571 |
if ( $this->cache[ $group ][ $key ] < 0 ) |
|
572 |
$this->cache[ $group ][ $key ] = 0; |
|
573 |
||
574 |
return $this->cache[ $group ][ $key ]; |
|
575 |
} |
|
576 |
||
577 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
578 |
* Replaces the contents in the cache, if contents already exist. |
0 | 579 |
* |
580 |
* @since 2.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
581 |
* |
0 | 582 |
* @see WP_Object_Cache::set() |
583 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
584 |
* @param int|string $key What to call the contents in the cache. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
585 |
* @param mixed $data The contents to store in the cache. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
586 |
* @param string $group Optional. Where to group the cache contents. Default 'default'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
587 |
* @param int $expire Optional. When to expire the cache contents. Default 0 (no expiration). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
588 |
* @return bool False if not exists, true if contents were replaced. |
0 | 589 |
*/ |
5 | 590 |
public function replace( $key, $data, $group = 'default', $expire = 0 ) { |
0 | 591 |
if ( empty( $group ) ) |
592 |
$group = 'default'; |
|
593 |
||
594 |
$id = $key; |
|
595 |
if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) |
|
596 |
$id = $this->blog_prefix . $key; |
|
597 |
||
598 |
if ( ! $this->_exists( $id, $group ) ) |
|
599 |
return false; |
|
600 |
||
601 |
return $this->set( $key, $data, $group, (int) $expire ); |
|
602 |
} |
|
603 |
||
604 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
605 |
* Resets cache keys. |
0 | 606 |
* |
607 |
* @since 3.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
608 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
609 |
* @deprecated 3.5.0 Use switch_to_blog() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
610 |
* @see switch_to_blog() |
0 | 611 |
*/ |
5 | 612 |
public function reset() { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
613 |
_deprecated_function( __FUNCTION__, '3.5.0', 'switch_to_blog()' ); |
0 | 614 |
|
615 |
// Clear out non-global caches since the blog ID has changed. |
|
616 |
foreach ( array_keys( $this->cache ) as $group ) { |
|
617 |
if ( ! isset( $this->global_groups[ $group ] ) ) |
|
618 |
unset( $this->cache[ $group ] ); |
|
619 |
} |
|
620 |
} |
|
621 |
||
622 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
623 |
* Sets the data contents into the cache. |
0 | 624 |
* |
625 |
* The cache contents is grouped by the $group parameter followed by the |
|
626 |
* $key. This allows for duplicate ids in unique groups. Therefore, naming of |
|
627 |
* the group should be used with care and should follow normal function |
|
628 |
* naming guidelines outside of core WordPress usage. |
|
629 |
* |
|
630 |
* The $expire parameter is not used, because the cache will automatically |
|
631 |
* expire for each time a page is accessed and PHP finishes. The method is |
|
632 |
* more for cache plugins which use files. |
|
633 |
* |
|
634 |
* @since 2.0.0 |
|
635 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
636 |
* @param int|string $key What to call the contents in the cache. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
637 |
* @param mixed $data The contents to store in the cache. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
638 |
* @param string $group Optional. Where to group the cache contents. Default 'default'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
639 |
* @param int $expire Not Used. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
640 |
* @return true Always returns true. |
0 | 641 |
*/ |
5 | 642 |
public function set( $key, $data, $group = 'default', $expire = 0 ) { |
0 | 643 |
if ( empty( $group ) ) |
644 |
$group = 'default'; |
|
645 |
||
646 |
if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) |
|
647 |
$key = $this->blog_prefix . $key; |
|
648 |
||
649 |
if ( is_object( $data ) ) |
|
650 |
$data = clone $data; |
|
651 |
||
652 |
$this->cache[$group][$key] = $data; |
|
653 |
return true; |
|
654 |
} |
|
655 |
||
656 |
/** |
|
657 |
* Echoes the stats of the caching. |
|
658 |
* |
|
659 |
* Gives the cache hits, and cache misses. Also prints every cached group, |
|
660 |
* key and the data. |
|
661 |
* |
|
662 |
* @since 2.0.0 |
|
663 |
*/ |
|
5 | 664 |
public function stats() { |
0 | 665 |
echo "<p>"; |
666 |
echo "<strong>Cache Hits:</strong> {$this->cache_hits}<br />"; |
|
667 |
echo "<strong>Cache Misses:</strong> {$this->cache_misses}<br />"; |
|
668 |
echo "</p>"; |
|
669 |
echo '<ul>'; |
|
670 |
foreach ($this->cache as $group => $cache) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
671 |
echo "<li><strong>Group:</strong> $group - ( " . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )</li>'; |
0 | 672 |
} |
673 |
echo '</ul>'; |
|
674 |
} |
|
675 |
||
676 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
677 |
* Switches the internal blog ID. |
0 | 678 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
679 |
* This changes the blog ID used to create keys in blog specific groups. |
0 | 680 |
* |
681 |
* @since 3.5.0 |
|
682 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
683 |
* @param int $blog_id Blog ID. |
0 | 684 |
*/ |
5 | 685 |
public function switch_to_blog( $blog_id ) { |
0 | 686 |
$blog_id = (int) $blog_id; |
687 |
$this->blog_prefix = $this->multisite ? $blog_id . ':' : ''; |
|
688 |
} |
|
689 |
||
690 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
691 |
* Serves as a utility function to determine whether a key exists in the cache. |
0 | 692 |
* |
693 |
* @since 3.4.0 |
|
694 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
695 |
* @param int|string $key Cache key to check for existence. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
696 |
* @param string $group Cache group for the key existence check. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
697 |
* @return bool Whether the key exists in the cache for the given group. |
0 | 698 |
*/ |
699 |
protected function _exists( $key, $group ) { |
|
700 |
return isset( $this->cache[ $group ] ) && ( isset( $this->cache[ $group ][ $key ] ) || array_key_exists( $key, $this->cache[ $group ] ) ); |
|
701 |
} |
|
702 |
||
703 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
704 |
* Sets up object properties; PHP 5 style constructor. |
0 | 705 |
* |
706 |
* @since 2.0.8 |
|
707 |
*/ |
|
5 | 708 |
public function __construct() { |
0 | 709 |
$this->multisite = is_multisite(); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
710 |
$this->blog_prefix = $this->multisite ? get_current_blog_id() . ':' : ''; |
0 | 711 |
|
712 |
||
713 |
/** |
|
714 |
* @todo This should be moved to the PHP4 style constructor, PHP5 |
|
715 |
* already calls __destruct() |
|
716 |
*/ |
|
717 |
register_shutdown_function( array( $this, '__destruct' ) ); |
|
718 |
} |
|
719 |
||
720 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
721 |
* Saves the object cache before object is completely destroyed. |
0 | 722 |
* |
723 |
* Called upon object destruction, which should be when PHP ends. |
|
724 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
725 |
* @since 2.0.8 |
0 | 726 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
727 |
* @return true Always returns true. |
0 | 728 |
*/ |
5 | 729 |
public function __destruct() { |
0 | 730 |
return true; |
731 |
} |
|
732 |
} |