method
destroy
v3.0.0 -
Show latest stable
- Class:
ActionDispatch::Session::MemCacheStore
destroy(env)private
No documentation available.
# File actionpack/lib/action_dispatch/middleware/session/mem_cache_store.rb, line 46
def destroy(env)
if sid = current_session_id(env)
@pool.delete(sid)
end
rescue MemCache::MemCacheError, Errno::ECONNREFUSED
false
end