Skip to content

Instantly share code, notes, and snippets.

@benarent
Created June 17, 2012 23:35
Show Gist options
  • Save benarent/2946063 to your computer and use it in GitHub Desktop.
Save benarent/2946063 to your computer and use it in GitHub Desktop.
Setting up Redis Cache
## Cache Store
# config/environments/production.rb
config.cache_store = :redis_store
## Session Store
# config/initializers/session_store.rb
MyApplication::Application.config.session_store :redis_store,
servers: ['redis://:secret@192.168.6.23:6379/0', 'redis://:secret@192.168.6.99:6379/1']
## HTTP Cache
# config.ru
require 'rack'
require 'rack/cache'
require 'redis-rack-cache'
use Rack::Cache,
metastore: 'redis://localhost:6379/0/metastore',
entitystore: 'redis://localhost:6380/0/entitystore'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment