Home > Backend Development > PHP Tutorial > php memcached的server_key是什么意思?

php memcached的server_key是什么意思?

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 20:26:10
Original
1596 people have browsed it

有一系列的*ByKey函数,比如:

<code>Memcached::addByKey
Memcached::decrementByKey
Memcached::incrementByKey</code>
Copy after login
Copy after login

手册上看了半天没看懂,说什么server_key也是普通的key,不知道这里的普通的key是什么key。和一般的set($key,$value)中的$key总不一样吧,求解释。

回复内容:

有一系列的*ByKey函数,比如:

<code>Memcached::addByKey
Memcached::decrementByKey
Memcached::incrementByKey</code>
Copy after login
Copy after login

手册上看了半天没看懂,说什么server_key也是普通的key,不知道这里的普通的key是什么key。和一般的set($key,$value)中的$key总不一样吧,求解释。

server_key 是用来区分不同的memcached服务器

<code>比如
Memcached::addByKey('server1','key','value1')
Memcached::addByKey('server2','key','value2')
取值
Memcached::getByKey('server1','key')</code>
Copy after login

可以理解为强制在某个缓存服务器读写信息

server_key 就是用来区分不同的 memcached 服务器,因为有可能你的系统使用的是 memcached 集群,比如有
A,B,C 三台 memcached 服务器 A 用于存储前台页面全页缓存 B 用于存储商品分类数据 C 用于存储商品库存数据 。 这样的话数据存储在哪台上面需要有个标识,可以简单根据 A,B,C来区分。那么 A,B,C 就是server_key

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template