Php/docs/memcache.ini
来自菜鸟教程
运行时配置
这些函数的行为受 php.ini
中的设置影响。
名字 | 默认 | 可修改范围 | 更新日志 |
---|---|---|---|
memcache.allow_failover | "1" | PHP_INI_ALL | Available since memcache 2.0.2. |
memcache.max_failover_attempts | "20" | PHP_INI_ALL | Available since memcache 2.1.0. |
memcache.chunk_size | "8192" | PHP_INI_ALL | Available since memcache 2.0.2. |
memcache.default_port | "11211" | PHP_INI_ALL | Available since memcache 2.0.2. |
memcache.hash_strategy | "standard" | PHP_INI_ALL | Available since memcache 2.2.0. |
memcache.hash_function | "crc32" | PHP_INI_ALL | Available since memcache 2.2.0. |
session.save_handler | "files" | PHP_INI_ALL | Supported since memcache 2.1.2 |
session.save_path | "" | PHP_INI_ALL | Supported since memcache 2.1.2 |
memcache.protocol | ascii | >PHP_INI_ALL | Supported since memcache 3.0.0 |
memcache.redundancy | 1 | >PHP_INI_ALL | Supported since memcache 3.0.0 |
memcache.session_redundancy | 2 | >PHP_INI_ALL | Supported since memcache 3.0.0 |
memcache.compress_threshold | 20000 | >PHP_INI_ALL | Supported since memcache 3.0.3 |
memcache.lock_timeout | 15 | >PHP_INI_ALL | Supported since memcache 3.0.4 |
有关 PHP_INI_* 样式的更多详情与定义,见 配置可被设定范围。 这是配置指令的简短说明。
memcache.allow_failover
boolean是否在发生错误时(对用户)透明的转移到其他服务器。
memcache.max_failover_attempts
integer定义在写入和获取数据时最多尝试的服务器次数(即:故障转移最大尝试数),仅和 memcache.allow_failover结合使用。
memcache.chunk_size
integer数据传输块大小,这个值越小网络I/O次数越多,如果发现莫名的速度降低, 可以尝试将此值调至32768。
memcache.default_port
string在尝试连接memcache的时候如果没有单独指定端口默认使用的TCP端口号。
memcache.hash_strategy
string控制key到服务器的映射(分布式)策略。值
consistent
允许服务器增减而不会(大量)导致健的重新映射 (译注:参见http://tech.idv2.com/2008/07/24/memcached-004/),设置为standard
则使用余数方式进行key的映射。memcache.hash_function
string控制在key-server映射时使用哪个hash函数
crc32
标明使用标准CRC32进行hash,fnv
则说明使用FNV-1a。session.save_handler
string当值为
memcache
时标记使用memcache作为session处理器。session.save_path
string定义一个逗号分割的用于session存储的服务器url列表,例如:
"tcp://host1:11211, tcp://host2:11211"
.每个url可以包含参数,这些参数于方法Memcache::addServer()的参数相同。比如:
"tcp://host1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
memcache.protocol
stringmemcache.redundancy
integermemcache.session_redundancy
integermemcache.compress_threshold
integermemcache.lock_timeout
integer