Memcached::delete
(PECL memcached >= 0.1.0)
Memcached::delete — アイテムを削除する
パラメータ
key
-
削除したいキー。
time
-
サーバーがアイテムを削除するまでの待ち時間。
注意: memcached 1.3.0 (2009年リリース) 以降は、 この機能はサポートされなくなりました。 ゼロでない
time
を渡すと、 削除は失敗します。 Memcached::getResultCode() はMEMCACHED_INVALID_ARGUMENTS
を返します。
戻り値
成功した場合に true
を、失敗した場合に false
を返します。
キーが存在しない場合、
Memcached::getResultCode() は
Memcached::RES_NOTFOUND
を返します。
例
例1 Memcached::delete() の例
<?php
$m = new Memcached();
$m->addServer('localhost', 11211);
$m->delete('key1');
?>
+add a note
User Contributed Notes 1 note
Pramod Patil ¶
10 years ago
--For PECL memcached 2.10--
delete used with second argument 'time' returns false and set the error code and message for invalid arguments unless used without Memcached::OPT_BINARY_PROTOCOL.
getResultCode() and getResultMessage() returns 38 and INVALID ARGUMENTS respectively.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google