使用Rack :: Session :: Pool与Sinatra

时间:2009-06-06 17:09:27

标签: ruby-on-rails ruby sinatra

我正在探索Sinatra,我想使用会话,但我不希望它们存储在Cookie中,我发现Rack :: Session :: Pool非常有用。

现在我希望会话在一段时间后过期但我不明白如何实现Rack :: Session :: Pool并且他们在Sinatra中使用它。

任何线索?

2 个答案:

答案 0 :(得分:10)

Sinatra相当强大,The Wicked Flea的伎俩没有用,但是这样做了:

use Rack::Session::Pool, :domain => 'example.com', :expire_after => 60 * 60 * 24 * 365

谢谢!

答案 1 :(得分:5)

在你的架构文件中:

%w(rubygems rack sinatra).each { |dependency| require dependency }
disable :run

require 'myapp'

sessioned = Rack::Session::Pool.new(
  Sinatra::Application,
  :domain       => 'example.com',
  :expire_after => 60 * 60 * 24 * 365 # expire after 1 year
)
run sessioned

启动运行rackup app.ru,或使用Passenger等。这应该将您的应用程序包装在会话池中并启用其功能。我不完全知道为什么它不像大多数其他中间件一样需要使用

明白我根本没有测试过这个,我还没有需要会话池的东西。我是从documentation为Rack :: Session :: Pool写的,它在页面顶部有一个例子。所以,我无法确切地告诉你如何使用它。