Memcache::setCompressThreshold

(PECL memcache >= 2.0.0)

Memcache::setCompressThreshold������ֵ�Զ�ѹ��

˵��

Memcache::setCompressThreshold ( int $threshold [, float $min_savings ] ) : bool

Memcache::setCompressThreshold()�������ڴ�ֵ���Զ�ѹ���� ͬ����Ҳ����ʹ�ú���memcache_set_compress_threshold()��

Note:

�˺�����memcache2.0.0���롣

����

threshold

���ƶ��ֵ�����Զ�ѹ������ֵ��

min_saving

ָ������ѹ��ʵ�ʴ洢��ֵ��ѹ���ʣ�֧�ֵ�ֵ������0��1֮�䡣Ĭ��ֵ��0.2��ʾ20%ѹ���ʡ�

����ֵ

�ɹ�ʱ���� TRUE�� ������ʧ��ʱ���� FALSE��

����

Example #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);

?>