PHP 8.6.0 Beta 1 is available for testing

Класс Memcache

(PECL memcache >= 0.2.0)

Введение

Представляет подключение к набору серверов memcache.

Обзор класса

class Memcache {
function add (
string $key,
mixed $var,
int $flag = ?,
int $expire = ?
): bool
function addServer (
string $host,
int $port = 11211,
bool $persistent = ?,
int $weight = ?,
int $timeout = ?,
int $retry_interval = ?,
bool $status = ?,
callable $failure_callback = ?,
int $timeoutms = ?
): bool
function close (): bool
function connect (string $host, int $port = ?, int $timeout = ?): bool
function decrement (string $key, int $value = 1): int |false
function delete (string $key, int $exptime = 0): bool
function flush (): bool
function get (string $key, int &$flags = ?): string
function getExtendedStats (string $type = ?, int $slabid = ?, int $limit = 100): array
function getServerStatus (string $host, int $port = 11211): int
function getStats (string $type = ?, int $slabid = ?, int $limit = 100): array |false
function getVersion (): string |false
function increment (string $key, int $value = 1): int |false
function pconnect (string $host, int $port = ?, int $timeout = ?): bool
function replace (
string $key,
mixed $var,
int $flag = ?,
int $expire = ?
): bool
function set (
string $key,
mixed $var,
int $flag = ?,
int $expire = ?
): bool
function setCompressThreshold (int $threshold, float $min_savings = ?): bool
function setServerParams (
string $host,
int $port = 11211,
int $timeout = ?,
int $retry_interval = false ,
bool $status = ?,
callable $failure_callback = ?
): bool
}

Содержание

Нашли ошибку?

ИнструкцияИсправлениеСообщение об ошибке
+Добавить

Примечания пользователей 1 note

up
18
chris at NOSPAM dot xeneco dot co dot uk
13 years ago
It helps to know that for this extension to work, you need a server with 'Memcached' (a service independent of PHP) installed and running as a service.
The documentation herein refers a lot to 'memcache_host'. This is not an arbitrary string, but should be a host name (eg localhost) or an IP address of a server running memcached.
If you have just installed the php memcache extension then you will not necessarily have memcached installed as well
+Добавить

AltStyle によって変換されたページ (->オリジナル) /