File: memcache.rb

package info (click to toggle)
ruby-rack 2.2.20-0%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,676 kB
  • sloc: ruby: 16,512; sh: 12; makefile: 7; javascript: 1
file content (10 lines) | stat: -rw-r--r-- 229 bytes parent folder | download | duplicates (2)
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