He instalado un servidor memcahced en mi máquina
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 Entonces, quería actualizarlo a 1.4.17 ya que es el último. Pero, cuando digo yum update memcached , grita así.
Setting up the Update Process No Match for argument: memcached No package memcached available. No Packages marked for UpdateSistema operativo: Ubuntu 12.10
Resultado del comando 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/Del sitio de Memcached: https://memcached.org/downloads
wget http://memcached.org/latest tar -zxvf latest cd memcached-1.xx ./configure && make && make test && sudo make installIntente ejecutar aptitude show memcached en la terminal. Entonces, es posible que descubras que la última versión actualmente admitida por los repositorios de Ubuntu 12.10 es, de hecho, la 1.4.14. (Es posible que deba instalar aptitude si no está instalado).
Esto se debe a que los desarrolladores de Ubuntu mantienen el paquete para garantizar que sea estable para la versión de Ubuntu que está utilizando. Para obtener más información sobre los repositorios de Ubuntu, consulte https://help.ubuntu.com/community/Repositories/Ubuntu
Si aún desea lo último y lo mejor, es posible que deba compilarlo desde la fuente usted mismo: https://code.google.com/p/memcached/wiki/NewInstallFromSource
Editar: enlace roto y no hay forma de sustituirlo. Sus documentos wiki parecen estar sufriendo después de que Memcached migró a GitHub. Así que http://www.memcached.org/ o https://github.com/memcached/memcached podría ser el lugar para comenzar. Con suerte, los documentos actualizados de instalación desde el origen eventualmente aparecerán en https://github.com/memcached/memcached/wiki .