This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Wed Apr 15 12:49:10 -0700 2009 | |
| |
MIT-LICENSE | Sat Apr 11 03:54:41 -0700 2009 | |
| |
README.textile | ||
| |
Rakefile | ||
| |
lib/ | ||
| |
redis-store.gemspec | ||
| |
spec/ |
README.textile
Redis cache and session stores for Ruby web frameworks
Installation
Download and install Redis from http://code.google.com/p/redis/
wget http://redis.googlecode.com/files/redis-0.094.tar.gz tar -zxvf redis-0.094.tar.gz cd redis-0.094 makeInstall the gems
sudo gem install ezmobius-redis-rb -s http://gems.github.com sudo gem install jodosha-redis-store -s http://gems.github.comCache store
Provides a cache store for your Ruby web framework of choice.
How to use with Rails
config.gem “jodosha-redis-store”, :source => “http://gems.github.com”, :lib => “redis-store” require “redis-store” # HACK Rails tries to instantiate cache first, then load configured gems config.cache_store = :redis_storeHow to use with Merb
dependency “jodosha-redis-store”, “0.2.0” dependency(“merb-cache”, merb_gems_version) do Merb::Cache.setup do register(:redis, Merb::Cache::RedisStore, :servers => [“127.0.0.1:6379”]) end endHow to use with Sinatra
require ‘rubygems’ require ‘sinatra’ require ‘jodosha-redis-store’ class MyApp < Sinatra::Base register Sinatra::Cache get ‘/hi’ do cache.fetch(“greet”) { “Hello, World!” } end endRack::Cache
Provides a Redis store for HTTP caching. See http://github.com/rtomayko/rack-cache
require “rubygems” require “rack” require “rack/cache” require “jodosha-redis-store” require “application” use Rack::Cache, :metastore => ‘redis://localhost:6379/0’, :entitystore => ‘redis://localhost:6380/1’ run Application.newCopyright
© 2009 Luca Guidi – http://lucaguidi.com, released under the MIT license








