CakeFest 2024: The Official CakePHP Conference

定義済み定数

Memcache 定数
名前 説明
MEMCACHE_COMPRESSED (int) Memcache::set()Memcache::add() そして Memcache::replace() を実行する際に、同時にデータの圧縮を行います。
MEMCACHE_HAVE_SESSION (int) この Memcache セッションハンドラが有効な場合に 1、それ以外の場合に 0 となります。
MEMCACHE_USER1 (int) Memcache::set()Memcache::add() そして Memcache::replace() でのユーザー定義のアプリケーションフラグとして使います。
MEMCACHE_USER2 (int) Memcache::set()Memcache::add() そして Memcache::replace() でのユーザー定義のアプリケーションフラグとして使います。
MEMCACHE_USER3 (int) Memcache::set()Memcache::add() そして Memcache::replace() でのユーザー定義のアプリケーションフラグとして使います。
MEMCACHE_USER4 (int) Memcache::set()Memcache::add() そして Memcache::replace() でのユーザー定義のアプリケーションフラグとして使います。
add a note

User Contributed Notes 1 note

up
-15
Joan
14 years ago
MEMCACHE_COMPRESSED=2
Using value of 1 produces serialization errors when retrieving values.
To Top