Skip to content

Instantly share code, notes, and snippets.

@danhigham
Last active December 13, 2015 16:49
Show Gist options
  • Save danhigham/4943057 to your computer and use it in GitHub Desktop.
Save danhigham/4943057 to your computer and use it in GitHub Desktop.
Simple session persistence with Redis and Sinatra
require 'sinatra/base'
require 'httparty'
require 'redis'
require 'json'
class SessionApp < Sinatra::Base
set :sessions, true
get "/" do
session_id = session[:session_id]
redis = Redis.new
tweet_hash = JSON.parse(redis.get(session_id) || '[]')
tweet = HTTParty.get('http://search.twitter.com/search.json?q=twitter&rpp=1').parsed_response['results'].first
tweet_hash << tweet
redis.set session_id, tweet_hash.to_json
tweet_hash.inspect
end
end
require './app'
run SessionApp.new
source :rubygems
gem 'sinatra'
gem 'redis'
gem 'httparty'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment