Memcached 小结

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Memcached 小结相关的知识,希望对你有一定的参考价值。

memcached 分布式内存对象缓存系统;

内存缓存;把所取对象或数据缓存在内存中;内存中缓存的这些数据通过API的方式被存取;

数据就像是一张HASH表,以key-value对的方式存在。

用来减轻数据库的压力,提高网站的响应速度,构建快速可扩展的web应用。


内置内存管理方式;使用LUR自动删除不使用的存储,重用过期数据的内存空间。

所以重启机器之后缓存数据会丢失。


下载依赖 libevent

也可以 yum安装

# yum install libevent

源码

# https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz

# tar -xf libevent-2.0.22-stable.tar.gz 

# cd libevent-2.0.22-stable

# ./configure 

# make &&make install


memcached 下载安装;

# wget https://memcached.org/latest

[you might need to rename the file] 默认是最新版本;

# tar -zxf memcached-1.x.x.tar.gz

# cd memcached-1.x.x

# ./configure --prefix=/usr/local/memcached

# make && make test && sudo make install


启动失败?

[[email protected] memcached-1.4.30]# /usr/local/bin/memcached 

/usr/local/bin/memcached: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory


[[email protected] memcached-1.4.30]# find / -name libevent-2.0.so.5

/opt/memcached/libevent-2.0.22-stable/.libs/libevent-2.0.so.5

/usr/local/lib/libevent-2.0.so.5

编辑 /etc/ld.so.conf  添加以上;

[[email protected] memcached-1.4.30]# vi /etc/ld.so.conf

[[email protected] memcached-1.4.30]# ldconfig



启动:指定root 或者切换非root

[[email protected] memcached-1.4.30]# /usr/local/bin/memcached -m 32m -p 11211 -d -u root

# yum install telnet 

[[email protected] memcached-1.4.30]# telnet 127.0.0.1 11211

Trying 127.0.0.1...

Connected to 127.0.0.1.

Escape character is ‘^]‘.

查看状态:

stats


管理工具

memcached-tool 

yum install memcached-tool


本文出自 “logs” 博客,请务必保留此出处http://51log.blog.51cto.com/6076767/1851188

以上是关于Memcached 小结的主要内容,如果未能解决你的问题,请参考以下文章

memcached原理 部署memcached Session共享

memcached命令行memcached数据导入和导出PHP链接memcached memcach

php memcached怎么用

memcached 为啥要 cas

领会Memcached高可用群集(Memcached主主复制+Keepalived)

Memcached源代码分析 - Memcached源代码分析之消息回应