[Rails] 使用 memcached 儲存 session

memcached 是一套 Name-Value Pair (NVP) 分散式記憶體快取系統, Key 的長度被限制在 250 characters, 儲存的資料不能超過 1 megabyte 要特別注意, memcached 不是 persistent data store, 只要關掉 memcahed 重開, 裡面的資料會通通不見 Rails 專案 Gemfile 內加上 gem 'dalli' 執行 bundle install 接著將 config/enviroment/production »