我已经在我的机器上安装了内存服务器。
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的时候,它就像这样大叫。
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命令的结果
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/发布于 2016-05-11 22:58:03
来自Memcached的站点:https://memcached.org/downloads
wget http://memcached.org/latest
tar -zxvf latest
cd memcached-1.x.x
./configure && make && make test && sudo make installhttps://stackoverflow.com/questions/21374609
复制相似问题