1. memcachedのインストールと環境設定 % yum -y install memcached % /etc/init.d/memcached start % chkconfig memcached on #memcachedのデフォルトポート(11211)を開ける % vi /etc/init.d/iptables % /etc/init.d/iptables restart 2.memcache-clientのインストール % gem install memcache-client 3. railsのmemcachedの設定。environment.rb # Be sure to restart your web server when you modify this file. ... ENV['RAILS_ENV'] ||= 'production' ... # memca