Memcache::setCompressThreshold

(PECL memcache >= 2.0.0)

Memcache::setCompressThreshold開啟大值自動壓縮

說明

Memcache::setCompressThreshold(int $threshold, float $min_savings = ?): bool

Memcache::setCompressThreshold()開啟對于大值的自動壓縮。 同樣你也可以使用函數(shù)memcache_set_compress_threshold()。

注意:

此函數(shù)在memcache2.0.0加入。

參數(shù)

threshold

控制多大值進行自動壓縮的閾值。

min_saving

指定經(jīng)過壓縮實際存儲的值的壓縮率,支持的值必須在0和1之間。默認值是0.2表示20%壓縮率。

返回值

成功時返回 true, 或者在失敗時返回 false。

范例

示例 #1 Memcache::setCompressThreshold() 示例

<?php

/* OO API */

$memcache_obj = new Memcache;
$memcache_obj->addServer('memcache_host'11211);
$memcache_obj->setCompressThreshold(200000.2);

/* procedural API */

$memcache_obj memcache_connect('memcache_host'11211);
memcache_set_compress_threshold($memcache_obj200000.2);

?>