
WordPress数据库初学者指南
wp_cache_get ( $key, $group = '', $force = false, $found = null )
wp_cache_get: 这个函数从缓存中检索与指定键相关的值。如果在缓存中没有找到该键,该函数返回false。
按键和组从高速缓存中检索高速缓存内容。
function wp_cache_get( $key, $group = '', $force = false, &$found = null ) { global $wp_object_cache; return $wp_object_cache->get( $key, $group, $force, $found ); }