rtomayko (owner)

Revisions

gist: 191071 Download_button fork
public
Public Clone URL: git://gist.github.com/191071.git
Embed All Files: show embed
config.ru #
1
2
3
4
5
6
# Rack::Cache on Heroku
 
memcache = MemCache.new(ENV['MEMCACHE_SERVERS'].split)
use Rack::Cache, :entitystore => memcache, :metastore => memcache
 
# NOTE: the memcached addon must be enabled first: `heroku addons:add memcached'