This is an example Rails application that demonstrates the use of caching using the MemCachier addon on Heroku. This example is written with Rails 5.1.
You can read the full text of the Heroku Dev Center article here.
You can see this app in action on Heroku here.
You can deploy this app yourself to Heroku to play with.
Setting up MemCachier to work in Rails is very easy. You need to make changes to Gemfile, production.rb, and any app code that you want cached. These changes are covered in detail below.
MemCachier has been tested with the dalli memcache client. Add the following gems to your Gemfile:
gem 'memcachier'
gem 'dalli'
Then run bundle install
as usual.
Note that the memcachier
gem simply sets the appropriate environment
variables for Dalli. You can also do this manually in your
production.rb file if you prefer:
ENV["MEMCACHE_SERVERS"] = ENV["MEMCACHIER_SERVERS"]
ENV["MEMCACHE_USERNAME"] = ENV["MEMCACHIER_USERNAME"]
ENV["MEMCACHE_PASSWORD"] = ENV["MEMCACHIER_PASSWORD"]
Alternatively, you can pass these options to config.cache_store (also in production.rb):
config.cache_store = :mem_cache_store, ENV["MEMCACHIER_SERVERS"],
{:username => ENV["MEMCACHIER_USERNAME"],
:password => ENV["MEMCACHIER_PASSWORD"]}
Ensure that the following configuration option is set in production.rb:
config.cache_store = :mem_cache_store
In your application, use Rails.cache
methods to access MemCachier.
A list of methods is available
here.
All the built-in Rails caching tools will work, too.
We are happy to receive bug reports, fixes, documentation enhancements, and other improvements.
Please report bugs via the github issue tracker.
Master git repository:
git clone git://github.com/memcachier/examples-rails-heroku.git
This library is BSD-licensed.