Skip to content

drobtravels/caching_example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.