Home > Database > Mysql Tutorial > [NOSQL]Memcache入门

[NOSQL]Memcache入门

WBOY
Release: 2016-06-07 15:55:48
Original
1142 people have browsed it

Memcache是临时性键值存储NoSQL数据库,过去被大量使用在互联网网站中,作为应用和数据库之间的缓存层(现已打都被Redis取代),它是由Danga Interactive公司开发,最初为了加速LiveJournal 访问速度而开发,后来成为广泛应用的开源项目,官网: http://memc

Memcache是临时性键值存储NoSQL数据库,过去被大量使用在互联网网站中,作为应用和数据库之间的缓存层(现已打都被Redis取代),它是由Danga Interactive公司开发,最初为了加速LiveJournal 访问速度而开发,后来成为广泛应用的开源项目,官网: http://memcached.org/

Memcache的特点

全内存运转
哈希方式存储
简单文本协议进行数据通信
叧操作字符型数据,其它类型数据由应用解释,支持序列化以及反序列化
集群也由应用进行控制,采用一致性散列(哈希)算法

Memcache的安装和启动

安装:
[root@lx61 ~]# yum install memcached
Copy after login

启动:

[root@lx61 ~]# /etc/init.d/memcached start
Starting memcached: [  OK  ]
Copy after login
默认的监听端口为11211:
[root@lx61 ~]# ps -ef|grep memcache
101      21341     1  0 13:38 ?        00:00:00 memcached -d -p 11211 -u memcached -m 64 -c 1024 -P /var/run/memcached/memcached.pid
Copy after login

Memcache充当数据库缓存

Memcache最主要的应用场景是作为数据库缓存,当它作为数据库缓存时,应用访问数据库的流程如下:

1)应用访问数据库前,首先看看在memcache中有没有key为该SQL语句

2)如果有,取其value当作查询结果,这样可以减少对数据库的访问压力

3)如果没有,则访问数据库,同时把取回的结果(value)和相应的SQL语句(key)放进memcached

高可用方案 - repcached

/usr/local/bin/repcached -p 11211 –v
/usr/local/bin/repcached -p 11212 -x localhost -v –d
不要用root身份运行

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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template