rack.git  about / heads / tags
a modular Ruby webserver interface
blob 6a601174075b257a061b754b4b12748efbda32d5 229 bytes (raw)
$ git show no-unicorn:lib/rack/session/memcache.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 
# frozen_string_literal: true

require 'rack/session/dalli'

module Rack
  module Session
    warn "Rack::Session::Memcache is deprecated, please use Rack::Session::Dalli from 'dalli' gem instead."
    Memcache = Dalli
  end
end

git clone https://yhbt.net/rack.git