Memcached 安装

Posted 孔雀东南飞

tags:

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

CentOS 7 安装 Memcached:

[[email protected] ~]# yum install -y memcached                                  //安装 Memcached
[[email protected] ~]# systemctl start memcached                                 //启动 Memcached,默认分配 64M 物理内存
[[email protected] ~]# /usr/bin/memcached -u memcached -p 11211 -m 64 -c 1024    //也可以手动启动 Memcached 并分配内存
-p    //指定监听的端口
-d    //以daemon方式运行
-u    //指定运行Memcached的用户
-m    //指定分配给Memcached的物理内存
-c    //指定最大并发连接数

 

 

 

 

 

 

 

     

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

Linux Memcached 安装

Linux下Memcached的安装步骤是啥呢?

Memcached一键安装入门教程

linux上安装memcached步骤

《NoSQL》memcached缓存

php扩展memcached和memcache的安装配置方法