update page now
PHP 8.1.34 Released!

Memcached::isPristine

(PECL memcached >= 2.0.0)

Memcached::isPristine直近に作られたインスタンスかどうかを調べる

説明

public Memcached::isPristine(): bool

Memcached::isPristine() は、その Memcache インスタンスが直近に作られたものかどうかを調べます。

パラメータ

この関数にはパラメータはありません。

戻り値

直近に作られたインスタンスである場合に true、それ以外の場合に false を返します。

参考

add a note

User Contributed Notes 2 notes

up
4
gerben at gerbs dot net
10 years ago
How is the return value determined? What is the definition of 'recently'? Does this function return true if the item was stored using the current connection?
up
1
vick dot qi at yahoo dot com
9 years ago
From the source code of contructor, the "recently" means the connection to server of the instence is recently created, that is the instance was created without a persistent_id parameter or the first to use the persistent_id.

For instance, the gives a bool(true):

$memcached = new Memcached();
$isPristine = $memcached->isPristine();
var_dump($isPristine);

This also gives a bool(true):

$memcached = new Memcached('pid1');
$isPristine = $memcached->isPristine();
var_dump($isPristine);

while this gives a bool(false):

$memcached = new Memcached('pid1');
$memcached2 = new Memcached('pid1');
$isPristine = $memcached2->isPristine();
var_dump($isPristine);
To Top