我无法从活动记录存储中删除。
我想根据会话数据删除:
ActiveRecord::SessionStore::Session.find(:all).each do |s|
if s.data[:userid] == 1234
s.destroy
end
end
似乎不起作用,但是:
ActiveRecord::SessionStore::Session.delete_all(["updated_at < ?", 12.hours.ago])
似乎有效,并且:
ActiveRecord::SessionStore::Session.find(:all).each do |s|
if s.data[:userid] == 1234
ActiveRecord::SessionStore::Session.delete_all("session_id = ?", s.session_id)
end
end
也不起作用。
我正在运行版本 rails 2.3.2,ruby 1.8.7。