Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 2.19 KB

README.md

File metadata and controls

33 lines (23 loc) · 2.19 KB

Caching with Ruby on Rails

This repository contains code examples for various ways of using caching with Ruby on Rails.

The code is from talk I gave titled "Real World Caching". You can see the see the slides here.

Availible Demos:

Running locally

bundle install
rake db:create && rake db:seed
foreman start

Redis Dependency

This requires Redis in development for caching.

On Mac OS, install with brew install redis

Run with foreman start to start both redis-server and rails server.