首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何在Linux中更新memcached服务器

如何在Linux中更新memcached服务器
EN

Stack Overflow用户
提问于 2014-01-27 06:49:40
回答 1查看 5.7K关注 0票数 3

我已经在我的机器上安装了内存服务器。

代码语言:javascript
复制
namal@namal:~$ sudo service memcached start
Starting memcached: memcached.

namal@namal:~$ telnet 127.0.0.1 11211
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.

version
VERSION 1.4.14

namal@namal:~$ which memcached
/usr/bin/memcached

因此,我想将其更新为1.4.17,因为它是最新的。但是,当我说yum update memcached的时候,它就像这样大叫。

代码语言:javascript
复制
Setting up the Update Process
No Match for argument: memcached
No package memcached available.
No Packages marked for Update

操作系统: Ubuntu 12.10

aptitude show memcached命令的结果

代码语言:javascript
复制
namal@namal:~$ aptitude show memcached
Package: memcached                
State: installed
Automatically installed: no
Version: 1.4.14-0ubuntu1
Priority: optional
Section: web
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Architecture: i386
Uncompressed Size: 226 k
Depends: libc6 (>= 2.4), libevent-2.0-5 (>= 2.0.10-stable), libsasl2-2 (>= 2.1.24), perl, lsb-base (>= 3.2-13), adduser
Suggests: libcache-memcached-perl, libmemcached
Description: A high-performance memory object caching system
 Danga Interactive developed memcached to enhance the speed of LiveJournal.com, a site which was already doing 20 million+ dynamic page views per day for 1 million users with a bunch of webservers and a bunch of database servers. memcached dropped
 the database load to almost nothing, yielding faster page load times for users, better resource utilization, and faster access to the databases on a memcache miss. 

 memcached optimizes specific high-load serving applications that are designed to take advantage of its versatile no-locking memory access system. Clients are available in several different programming languages, to suit the needs of the specific
 application. Traditionally this has been used in mod_perl apps to avoid storing large chunks of data in Apache memory, and to share this burden across several machines.
Homepage: http://www.danga.com/memcached/
EN

回答 1

Stack Overflow用户

发布于 2016-05-11 22:58:03

来自Memcached的站点:https://memcached.org/downloads

代码语言:javascript
复制
wget http://memcached.org/latest
tar -zxvf latest
cd memcached-1.x.x
./configure && make && make test && sudo make install
票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/21374609

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档