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?
PHP.mk документација
Memcached::isPristine
Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.
Патека
memcached.ispristine.php
Локална патека за оваа страница.
Извор
php.net/manual/en
Оригиналниот HTML се реупотребува и локално се стилизира.
Режим
Прокси + превод во позадина
Кодовите, табелите и белешките остануваат читливи во истиот тек.
Референца
memcached.ispristine.php
Memcached::isPristine
Референца за `memcached.ispristine.php` со подобрена типографија и навигација.
Memcached::isPristine
(PECL memcached >= 2.0.0)
Memcached::isPristine — Проверете дали инстанцата е неодамна креирана
= NULL
(PECL memcached >= 2.0.0) проверува дали инстанцата на Memcache е неодамна креирана.
Параметри
Оваа функција нема параметри.
Белешки од корисници 2 забелешки
cyberhorse at users dot sourceforge dot net ¶
пред 10 години
Memcached::isPersistent() ¶
пред 9 години
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);