Book Image

Heroku Cookbook

By : Mike Coutermarsh
Book Image

Heroku Cookbook

By: Mike Coutermarsh

Overview of this book

Heroku is a Platform as a Service that enables developers to rapidly deploy and scale their web applications. Heroku is designed for developer happiness, freeing developers from doing system administrative tasks such as configuring servers and setting up load balancers. Developers are able to focus on what they do best, building web applications, while leaving the details of deployment and scaling to the experts at Heroku. This practical guide is packed with step-by-step solutions to problems faced by every production-level web application hosted on Heroku. You'll quickly get comfortable with managing your Heroku applications from the command line and then learn everything you need to know to deploy and administer production-level web applications.
Table of Contents (17 chapters)
Heroku Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Adding Redis to a Rails application


Redis is a high-performance, in-memory, key-value store with persistence. It's a great alternative to memcached for caching, with the additional functionality of a NoSQL data store. Here, we will learn how to add Redis to our application and set it up to be used as a cache.

Getting ready…

We'll first set up a Redis server on our development machine using the following steps:

  1. Let's start by installing Redis.

    On OS X, we can use Homebrew to install Redis with the following command:

    $ brew install redis
    

    For Ubuntu, we can use apt-get:

    $ sudo apt-get update
    $ sudo apt-get install redis-server
    

    For other operating systems, we can get installation instructions from the Redis website (http://redis.io/download).

  2. Once installed, we can verify that our installation is working by trying out a couple of commands. Redis comes with a command-line program, redis-cli.

    Let's start it up and try setting and getting a key/value pair:

    $ redis-cli
    $ set testing 123
    OK
    $ get testing...