
內容簡介
這個外掛會更改著名的 Memcached WP Object Cache 後端,使其實際使用 Memcached 類別(而不是 Memcache 類別)。實現了 wp_cache_get_multi() 和 wp_cache_set_multi()。
wp_cache_get_multi( array(
array( 'key', 'group' ),
array( 'key', '' ),
array( 'key', 'group' ),
'key'
) );
wp_cache_set_multi( array(
array( 'key', 'data', 'group' ),
array( 'key', 'data' )
) );
博客文章:http://scotty-t.com/2012/06/05/memcached-redux/
外掛標籤
開發者團隊
原文外掛簡介
Changes the famous Memcached WP Object Cache backend to actually use the Memcached class (not the Memcache class). Implements wp_cache_get_multi() and wp_cache_set_multi()
wp_cache_get_multi( array(
array( 'key', 'group' ),
array( 'key', '' ),
array( 'key', 'group' ),
'key'
) );
wp_cache_set_multi( array(
array( 'key', 'data', 'group' ),
array( 'key', 'data' )
) );
Blog Post: http://scotty-t.com/2012/06/05/memcached-redux/
