wp_cache_set

函数
wp_cache_set ( $key, $data, $group = '', $expire = 0 )
参数
  • (int|string) $key The cache key to use for retrieval later.
    Required:
  • (mixed) $data The contents to store in the cache.
    Required:
  • (string) $group Optional. Where to group the cache contents. Enables the same key to be used across groups. Default empty.
    Required:
    Default: (empty)
  • (int) $expire Optional. When to expire the cache contents, in seconds. Default 0 (no expiration).
    Required:
返回值
  • (bool) True on success, false on failure.
相关
  • WP_Object_Cache::set()
定义位置
相关方法
wp_cache_getwp_cache_resetwp_cache_closewp_cache_deletewp_cache_decr
引入
2.0.0
弃用
-

wp_cache_set:wp_cache_set函数向缓存中添加数据。这些数据是由一个唯一的键来识别的,这个键是用来以后检索的。

将数据保存到缓存中。

与wp_cache_add()和wp_cache_replace()不同的是,它将一直写入数据。

function wp_cache_set( $key, $data, $group = '', $expire = 0 ) {
	global $wp_object_cache;

	return $wp_object_cache->set( $key, $data, $group, (int) $expire );
}

常见问题

FAQs
查看更多 >