dalli 2.7.8 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of dalli might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +12 -1
- data/History.md +151 -0
- data/README.md +27 -223
- data/lib/dalli/cas/client.rb +1 -57
- data/lib/dalli/client.rb +227 -254
- data/lib/dalli/compressor.rb +12 -2
- data/lib/dalli/key_manager.rb +113 -0
- data/lib/dalli/options.rb +6 -7
- data/lib/dalli/pipelined_getter.rb +177 -0
- data/lib/dalli/protocol/base.rb +241 -0
- data/lib/dalli/protocol/binary/request_formatter.rb +117 -0
- data/lib/dalli/protocol/binary/response_header.rb +36 -0
- data/lib/dalli/protocol/binary/response_processor.rb +239 -0
- data/lib/dalli/protocol/binary/sasl_authentication.rb +60 -0
- data/lib/dalli/protocol/binary.rb +173 -0
- data/lib/dalli/protocol/connection_manager.rb +252 -0
- data/lib/dalli/protocol/meta/key_regularizer.rb +31 -0
- data/lib/dalli/protocol/meta/request_formatter.rb +108 -0
- data/lib/dalli/protocol/meta/response_processor.rb +211 -0
- data/lib/dalli/protocol/meta.rb +177 -0
- data/lib/dalli/protocol/response_buffer.rb +54 -0
- data/lib/dalli/protocol/server_config_parser.rb +84 -0
- data/lib/dalli/protocol/ttl_sanitizer.rb +45 -0
- data/lib/dalli/protocol/value_compressor.rb +85 -0
- data/lib/dalli/protocol/value_marshaller.rb +59 -0
- data/lib/dalli/protocol/value_serializer.rb +91 -0
- data/lib/dalli/protocol.rb +8 -0
- data/lib/dalli/ring.rb +94 -83
- data/lib/dalli/server.rb +3 -746
- data/lib/dalli/servers_arg_normalizer.rb +54 -0
- data/lib/dalli/socket.rb +117 -137
- data/lib/dalli/version.rb +4 -1
- data/lib/dalli.rb +43 -15
- data/lib/rack/session/dalli.rb +95 -95
- metadata +43 -48
- data/lib/action_dispatch/middleware/session/dalli_store.rb +0 -82
- data/lib/active_support/cache/dalli_store.rb +0 -429
- data/lib/dalli/railtie.rb +0 -8
data/lib/rack/session/dalli.rb
CHANGED
@@ -1,16 +1,22 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
require 'rack/session/abstract/id'
|
3
4
|
require 'dalli'
|
5
|
+
require 'connection_pool'
|
6
|
+
require 'English'
|
4
7
|
|
5
8
|
module Rack
|
6
9
|
module Session
|
7
|
-
|
8
|
-
|
10
|
+
# Rack::Session::Dalli provides memcached based session management.
|
11
|
+
class Dalli < Abstract::PersistedSecure
|
12
|
+
attr_reader :data
|
9
13
|
|
14
|
+
# Don't freeze this until we fix the specs/implementation
|
15
|
+
# rubocop:disable Style/MutableConstant
|
10
16
|
DEFAULT_DALLI_OPTIONS = {
|
11
|
-
:
|
12
|
-
:memcache_server => 'localhost:11211'
|
17
|
+
namespace: 'rack:session'
|
13
18
|
}
|
19
|
+
# rubocop:enable Style/MutableConstant
|
14
20
|
|
15
21
|
# Brings in a new Rack::Session::Dalli middleware with the given
|
16
22
|
# `:memcache_server`. The server is either a hostname, or a
|
@@ -26,25 +32,14 @@ module Rack
|
|
26
32
|
# ENV['MEMCACHE_SERVERS'] and use that value if it is available, or fall
|
27
33
|
# back to the same default behavior described above.
|
28
34
|
#
|
29
|
-
# Rack::Session::Dalli
|
30
|
-
#
|
31
|
-
#
|
32
|
-
#
|
33
|
-
# Dalli::Client (or ConnectionPool) and use that instead of letting
|
34
|
-
# Rack::Session::Dalli instantiate it on your behalf, simply pass it in
|
35
|
-
# as the `:cache` option. Please note that you will be responsible for
|
36
|
-
# setting the namespace and any other options on Dalli::Client.
|
37
|
-
#
|
38
|
-
# Secondly, if you're not using the `:cache` option, Rack::Session::Dalli
|
39
|
-
# accepts the same options as Dalli::Client, so it's worth reviewing its
|
40
|
-
# documentation. Perhaps most importantly, if you don't specify a
|
41
|
-
# `:namespace` option, Rack::Session::Dalli will default to using
|
42
|
-
# "rack:session".
|
35
|
+
# Rack::Session::Dalli accepts the same options as Dalli::Client, so
|
36
|
+
# it's worth reviewing its documentation. Perhaps most importantly,
|
37
|
+
# if you don't specify a `:namespace` option, Rack::Session::Dalli
|
38
|
+
# will default to using 'rack:session'.
|
43
39
|
#
|
44
|
-
#
|
45
|
-
#
|
46
|
-
#
|
47
|
-
# the corresponding entry in memcached.
|
40
|
+
# It is not recommended to set `:expires_in`. Instead, use `:expire_after`,
|
41
|
+
# which will control both the expiration of the client cookie as well
|
42
|
+
# as the expiration of the corresponding entry in memcached.
|
48
43
|
#
|
49
44
|
# Rack::Session::Dalli also accepts a host of options that control how
|
50
45
|
# the sessions and session cookies are managed, including the
|
@@ -66,116 +61,121 @@ module Rack
|
|
66
61
|
# for more information about it and its default options (which would only
|
67
62
|
# be applicable if you supplied one of the two options, but not both).
|
68
63
|
#
|
69
|
-
def initialize(app, options={})
|
64
|
+
def initialize(app, options = {})
|
70
65
|
# Parent uses DEFAULT_OPTIONS to build @default_options for Rack::Session
|
71
66
|
super
|
72
67
|
|
73
68
|
# Determine the default TTL for newly-created sessions
|
74
|
-
@default_ttl = ttl
|
75
|
-
|
76
|
-
# Normalize and validate passed options
|
77
|
-
cache, mserv, mopts, popts = extract_dalli_options options
|
78
|
-
|
79
|
-
@pool =
|
80
|
-
if cache # caller passed a Dalli::Client or ConnectionPool instance
|
81
|
-
cache
|
82
|
-
elsif popts # caller passed ConnectionPool options
|
83
|
-
ConnectionPool.new(popts) { ::Dalli::Client.new(mserv, mopts) }
|
84
|
-
else
|
85
|
-
::Dalli::Client.new(mserv, mopts)
|
86
|
-
end
|
87
|
-
|
88
|
-
if @pool.respond_to?(:alive!) # is a Dalli::Client
|
89
|
-
@mutex = Mutex.new
|
90
|
-
|
91
|
-
@pool.alive!
|
92
|
-
end
|
69
|
+
@default_ttl = ttl(@default_options[:expire_after])
|
70
|
+
@data = build_data_source(options)
|
93
71
|
end
|
94
72
|
|
95
|
-
def
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
redo # generate a new sid and try again
|
102
|
-
end
|
103
|
-
end
|
104
|
-
[sid, session]
|
73
|
+
def find_session(_req, sid)
|
74
|
+
with_dalli_client([nil, {}]) do |dc|
|
75
|
+
existing_session = existing_session_for_sid(dc, sid)
|
76
|
+
return [sid, existing_session] unless existing_session.nil?
|
77
|
+
|
78
|
+
[create_sid_with_empty_session(dc), {}]
|
105
79
|
end
|
106
80
|
end
|
107
81
|
|
108
|
-
def
|
109
|
-
return false unless
|
82
|
+
def write_session(_req, sid, session, options)
|
83
|
+
return false unless sid
|
110
84
|
|
111
|
-
|
112
|
-
dc.set(
|
113
|
-
|
85
|
+
with_dalli_client(false) do |dc|
|
86
|
+
dc.set(memcached_key_from_sid(sid), session, ttl(options[:expire_after]))
|
87
|
+
sid
|
114
88
|
end
|
115
89
|
end
|
116
90
|
|
117
|
-
def
|
118
|
-
|
119
|
-
dc.delete(
|
91
|
+
def delete_session(_req, sid, options)
|
92
|
+
with_dalli_client do |dc|
|
93
|
+
dc.delete(memcached_key_from_sid(sid))
|
120
94
|
generate_sid_with(dc) unless options[:drop]
|
121
95
|
end
|
122
96
|
end
|
123
97
|
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
98
|
+
private
|
99
|
+
|
100
|
+
def memcached_key_from_sid(sid)
|
101
|
+
sid.private_id
|
102
|
+
end
|
103
|
+
|
104
|
+
def existing_session_for_sid(client, sid)
|
105
|
+
return nil unless sid && !sid.empty?
|
106
|
+
|
107
|
+
client.get(memcached_key_from_sid(sid))
|
108
|
+
end
|
128
109
|
|
129
|
-
|
130
|
-
|
110
|
+
def create_sid_with_empty_session(client)
|
111
|
+
loop do
|
112
|
+
sid = generate_sid_with(client)
|
113
|
+
|
114
|
+
break sid if client.add(memcached_key_from_sid(sid), {}, @default_ttl)
|
131
115
|
end
|
116
|
+
end
|
132
117
|
|
133
|
-
|
134
|
-
|
118
|
+
def generate_sid_with(client)
|
119
|
+
loop do
|
120
|
+
raw_sid = generate_sid
|
121
|
+
sid = raw_sid.is_a?(String) ? Rack::Session::SessionId.new(raw_sid) : raw_sid
|
122
|
+
break sid unless client.get(memcached_key_from_sid(sid))
|
135
123
|
end
|
136
124
|
end
|
137
125
|
|
138
|
-
|
126
|
+
def build_data_source(options)
|
127
|
+
server_configurations, client_options, pool_options = extract_dalli_options(options)
|
139
128
|
|
140
|
-
|
141
|
-
|
129
|
+
if pool_options.empty?
|
130
|
+
::Dalli::Client.new(server_configurations, client_options)
|
131
|
+
else
|
132
|
+
ensure_connection_pool_added!
|
133
|
+
ConnectionPool.new(pool_options) do
|
134
|
+
::Dalli::Client.new(server_configurations, client_options.merge(threadsafe: false))
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
142
138
|
|
143
|
-
|
144
|
-
|
145
|
-
options.reject {|k, _| DEFAULT_OPTIONS.key? k }
|
146
|
-
mserv = mopts.delete :memcache_server
|
139
|
+
def extract_dalli_options(options)
|
140
|
+
raise 'Rack::Session::Dalli no longer supports the :cache option.' if options[:cache]
|
147
141
|
|
148
|
-
|
149
|
-
|
150
|
-
popts[:size] = mopts.delete :pool_size if mopts[:pool_size]
|
151
|
-
popts[:timeout] = mopts.delete :pool_timeout if mopts[:pool_timeout]
|
142
|
+
client_options = retrieve_client_options(options)
|
143
|
+
server_configurations = client_options.delete(:memcache_server)
|
152
144
|
|
153
|
-
|
154
|
-
|
155
|
-
end
|
145
|
+
[server_configurations, client_options, retrieve_pool_options(options)]
|
146
|
+
end
|
156
147
|
|
157
|
-
|
148
|
+
def retrieve_client_options(options)
|
149
|
+
# Filter out Rack::Session-specific options and apply our defaults
|
150
|
+
filtered_opts = options.reject { |k, _| DEFAULT_OPTIONS.key? k }
|
151
|
+
DEFAULT_DALLI_OPTIONS.merge(filtered_opts)
|
158
152
|
end
|
159
153
|
|
160
|
-
def
|
161
|
-
|
162
|
-
|
163
|
-
|
154
|
+
def retrieve_pool_options(options)
|
155
|
+
{}.tap do |pool_options|
|
156
|
+
pool_options[:size] = options.delete(:pool_size) if options[:pool_size]
|
157
|
+
pool_options[:timeout] = options.delete(:pool_timeout) if options[:pool_timeout]
|
164
158
|
end
|
165
159
|
end
|
166
160
|
|
167
|
-
def
|
168
|
-
|
169
|
-
|
161
|
+
def ensure_connection_pool_added!
|
162
|
+
require 'connection_pool'
|
163
|
+
rescue LoadError => e
|
164
|
+
warn "You don't have connection_pool installed in your application. "\
|
165
|
+
'Please add it to your Gemfile and run bundle install'
|
166
|
+
raise e
|
167
|
+
end
|
168
|
+
|
169
|
+
def with_dalli_client(result_on_error = nil, &block)
|
170
|
+
@data.with(&block)
|
170
171
|
rescue ::Dalli::DalliError, Errno::ECONNREFUSED
|
171
|
-
raise if
|
172
|
+
raise if /undefined class/.match?($ERROR_INFO.message)
|
173
|
+
|
172
174
|
if $VERBOSE
|
173
175
|
warn "#{self} is unable to find memcached server."
|
174
|
-
warn
|
176
|
+
warn $ERROR_INFO.inspect
|
175
177
|
end
|
176
|
-
|
177
|
-
ensure
|
178
|
-
@mutex.unlock if @mutex and @mutex.locked?
|
178
|
+
result_on_error
|
179
179
|
end
|
180
180
|
|
181
181
|
def ttl(expire_after)
|
metadata
CHANGED
@@ -1,32 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dalli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 3.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter M. Goldstein
|
8
8
|
- Mike Perham
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2022-02-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
-
name:
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
requirements:
|
18
|
-
- - ">="
|
19
|
-
- !ruby/object:Gem::Version
|
20
|
-
version: 4.2.0
|
21
|
-
type: :development
|
22
|
-
prerelease: false
|
23
|
-
version_requirements: !ruby/object:Gem::Requirement
|
24
|
-
requirements:
|
25
|
-
- - ">="
|
26
|
-
- !ruby/object:Gem::Version
|
27
|
-
version: 4.2.0
|
28
|
-
- !ruby/object:Gem::Dependency
|
29
|
-
name: mocha
|
15
|
+
name: connection_pool
|
30
16
|
requirement: !ruby/object:Gem::Requirement
|
31
17
|
requirements:
|
32
18
|
- - ">="
|
@@ -40,35 +26,27 @@ dependencies:
|
|
40
26
|
- !ruby/object:Gem::Version
|
41
27
|
version: '0'
|
42
28
|
- !ruby/object:Gem::Dependency
|
43
|
-
name:
|
29
|
+
name: rack
|
44
30
|
requirement: !ruby/object:Gem::Requirement
|
45
31
|
requirements:
|
46
32
|
- - "~>"
|
47
33
|
- !ruby/object:Gem::Version
|
48
|
-
version: '
|
49
|
-
type: :development
|
50
|
-
prerelease: false
|
51
|
-
version_requirements: !ruby/object:Gem::Requirement
|
52
|
-
requirements:
|
53
|
-
- - "~>"
|
54
|
-
- !ruby/object:Gem::Version
|
55
|
-
version: '4'
|
56
|
-
- !ruby/object:Gem::Dependency
|
57
|
-
name: rake
|
58
|
-
requirement: !ruby/object:Gem::Requirement
|
59
|
-
requirements:
|
34
|
+
version: '2.0'
|
60
35
|
- - ">="
|
61
36
|
- !ruby/object:Gem::Version
|
62
|
-
version:
|
37
|
+
version: 2.2.0
|
63
38
|
type: :development
|
64
39
|
prerelease: false
|
65
40
|
version_requirements: !ruby/object:Gem::Requirement
|
66
41
|
requirements:
|
42
|
+
- - "~>"
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '2.0'
|
67
45
|
- - ">="
|
68
46
|
- !ruby/object:Gem::Version
|
69
|
-
version:
|
47
|
+
version: 2.2.0
|
70
48
|
- !ruby/object:Gem::Dependency
|
71
|
-
name:
|
49
|
+
name: rubocop
|
72
50
|
requirement: !ruby/object:Gem::Requirement
|
73
51
|
requirements:
|
74
52
|
- - ">="
|
@@ -82,7 +60,7 @@ dependencies:
|
|
82
60
|
- !ruby/object:Gem::Version
|
83
61
|
version: '0'
|
84
62
|
- !ruby/object:Gem::Dependency
|
85
|
-
name:
|
63
|
+
name: rubocop-minitest
|
86
64
|
requirement: !ruby/object:Gem::Requirement
|
87
65
|
requirements:
|
88
66
|
- - ">="
|
@@ -96,7 +74,7 @@ dependencies:
|
|
96
74
|
- !ruby/object:Gem::Version
|
97
75
|
version: '0'
|
98
76
|
- !ruby/object:Gem::Dependency
|
99
|
-
name:
|
77
|
+
name: rubocop-performance
|
100
78
|
requirement: !ruby/object:Gem::Requirement
|
101
79
|
requirements:
|
102
80
|
- - ">="
|
@@ -110,7 +88,7 @@ dependencies:
|
|
110
88
|
- !ruby/object:Gem::Version
|
111
89
|
version: '0'
|
112
90
|
- !ruby/object:Gem::Dependency
|
113
|
-
name:
|
91
|
+
name: rubocop-rake
|
114
92
|
requirement: !ruby/object:Gem::Requirement
|
115
93
|
requirements:
|
116
94
|
- - ">="
|
@@ -135,42 +113,59 @@ files:
|
|
135
113
|
- History.md
|
136
114
|
- LICENSE
|
137
115
|
- README.md
|
138
|
-
- lib/action_dispatch/middleware/session/dalli_store.rb
|
139
|
-
- lib/active_support/cache/dalli_store.rb
|
140
116
|
- lib/dalli.rb
|
141
117
|
- lib/dalli/cas/client.rb
|
142
118
|
- lib/dalli/client.rb
|
143
119
|
- lib/dalli/compressor.rb
|
120
|
+
- lib/dalli/key_manager.rb
|
144
121
|
- lib/dalli/options.rb
|
145
|
-
- lib/dalli/
|
122
|
+
- lib/dalli/pipelined_getter.rb
|
123
|
+
- lib/dalli/protocol.rb
|
124
|
+
- lib/dalli/protocol/base.rb
|
125
|
+
- lib/dalli/protocol/binary.rb
|
126
|
+
- lib/dalli/protocol/binary/request_formatter.rb
|
127
|
+
- lib/dalli/protocol/binary/response_header.rb
|
128
|
+
- lib/dalli/protocol/binary/response_processor.rb
|
129
|
+
- lib/dalli/protocol/binary/sasl_authentication.rb
|
130
|
+
- lib/dalli/protocol/connection_manager.rb
|
131
|
+
- lib/dalli/protocol/meta.rb
|
132
|
+
- lib/dalli/protocol/meta/key_regularizer.rb
|
133
|
+
- lib/dalli/protocol/meta/request_formatter.rb
|
134
|
+
- lib/dalli/protocol/meta/response_processor.rb
|
135
|
+
- lib/dalli/protocol/response_buffer.rb
|
136
|
+
- lib/dalli/protocol/server_config_parser.rb
|
137
|
+
- lib/dalli/protocol/ttl_sanitizer.rb
|
138
|
+
- lib/dalli/protocol/value_compressor.rb
|
139
|
+
- lib/dalli/protocol/value_marshaller.rb
|
140
|
+
- lib/dalli/protocol/value_serializer.rb
|
146
141
|
- lib/dalli/ring.rb
|
147
142
|
- lib/dalli/server.rb
|
143
|
+
- lib/dalli/servers_arg_normalizer.rb
|
148
144
|
- lib/dalli/socket.rb
|
149
145
|
- lib/dalli/version.rb
|
150
146
|
- lib/rack/session/dalli.rb
|
151
147
|
homepage: https://github.com/petergoldstein/dalli
|
152
148
|
licenses:
|
153
149
|
- MIT
|
154
|
-
metadata:
|
155
|
-
|
156
|
-
|
157
|
-
|
150
|
+
metadata:
|
151
|
+
rubygems_mfa_required: 'true'
|
152
|
+
post_install_message:
|
153
|
+
rdoc_options: []
|
158
154
|
require_paths:
|
159
155
|
- lib
|
160
156
|
required_ruby_version: !ruby/object:Gem::Requirement
|
161
157
|
requirements:
|
162
158
|
- - ">="
|
163
159
|
- !ruby/object:Gem::Version
|
164
|
-
version: '
|
160
|
+
version: '2.6'
|
165
161
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
166
162
|
requirements:
|
167
163
|
- - ">="
|
168
164
|
- !ruby/object:Gem::Version
|
169
165
|
version: '0'
|
170
166
|
requirements: []
|
171
|
-
|
172
|
-
|
173
|
-
signing_key:
|
167
|
+
rubygems_version: 3.3.7
|
168
|
+
signing_key:
|
174
169
|
specification_version: 4
|
175
170
|
summary: High performance memcached client for Ruby
|
176
171
|
test_files: []
|
@@ -1,82 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'active_support/cache'
|
3
|
-
require 'action_dispatch/middleware/session/abstract_store'
|
4
|
-
require 'dalli'
|
5
|
-
|
6
|
-
# Dalli-based session store for Rails 3.0.
|
7
|
-
module ActionDispatch
|
8
|
-
module Session
|
9
|
-
class DalliStore < AbstractStore
|
10
|
-
def initialize(app, options = {})
|
11
|
-
# Support old :expires option
|
12
|
-
options[:expire_after] ||= options[:expires]
|
13
|
-
|
14
|
-
super
|
15
|
-
|
16
|
-
@default_options = { :namespace => 'rack:session' }.merge(@default_options)
|
17
|
-
|
18
|
-
@pool = options[:cache] || begin
|
19
|
-
Dalli::Client.new(
|
20
|
-
@default_options[:memcache_server], @default_options)
|
21
|
-
end
|
22
|
-
@namespace = @default_options[:namespace]
|
23
|
-
|
24
|
-
@raise_errors = !!@default_options[:raise_errors]
|
25
|
-
|
26
|
-
super
|
27
|
-
end
|
28
|
-
|
29
|
-
def reset
|
30
|
-
@pool.reset
|
31
|
-
end
|
32
|
-
|
33
|
-
private
|
34
|
-
|
35
|
-
def get_session(env, sid)
|
36
|
-
sid = generate_sid unless sid and !sid.empty?
|
37
|
-
begin
|
38
|
-
session = @pool.get(sid) || {}
|
39
|
-
rescue Dalli::DalliError => ex
|
40
|
-
# re-raise ArgumentError so Rails' session abstract_store.rb can autoload any missing models
|
41
|
-
raise ArgumentError, ex.message if ex.message =~ /unmarshal/
|
42
|
-
Rails.logger.warn("Session::DalliStore#get: #{ex.message}")
|
43
|
-
session = {}
|
44
|
-
end
|
45
|
-
[sid, session]
|
46
|
-
end
|
47
|
-
|
48
|
-
def set_session(env, sid, session_data, options = nil)
|
49
|
-
options ||= env[ENV_SESSION_OPTIONS_KEY]
|
50
|
-
expiry = options[:expire_after]
|
51
|
-
@pool.set(sid, session_data, expiry)
|
52
|
-
sid
|
53
|
-
rescue Dalli::DalliError
|
54
|
-
Rails.logger.warn("Session::DalliStore#set: #{$!.message}")
|
55
|
-
raise if @raise_errors
|
56
|
-
false
|
57
|
-
end
|
58
|
-
|
59
|
-
def destroy_session(env, session_id, options)
|
60
|
-
begin
|
61
|
-
@pool.delete(session_id)
|
62
|
-
rescue Dalli::DalliError
|
63
|
-
Rails.logger.warn("Session::DalliStore#destroy_session: #{$!.message}")
|
64
|
-
raise if @raise_errors
|
65
|
-
end
|
66
|
-
return nil if options[:drop]
|
67
|
-
generate_sid
|
68
|
-
end
|
69
|
-
|
70
|
-
def destroy(env)
|
71
|
-
if sid = current_session_id(env)
|
72
|
-
@pool.delete(sid)
|
73
|
-
end
|
74
|
-
rescue Dalli::DalliError
|
75
|
-
Rails.logger.warn("Session::DalliStore#destroy: #{$!.message}")
|
76
|
-
raise if @raise_errors
|
77
|
-
false
|
78
|
-
end
|
79
|
-
|
80
|
-
end
|
81
|
-
end
|
82
|
-
end
|