Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7833833
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T12:55:13+00:00 2026-06-02T12:55:13+00:00

It used to be that a line like this in the application controller would

  • 0

It used to be that a line like this in the application controller would disable sessions entirely for a request:

session :off, :if => Proc.new {|req| req.user_agent =~ BOT_REGEX}

With Rails 3.x, this is either deprecated or no longer works. I realize that the new concept is that sessions are lazy loaded, but the execution flow through the app uses/checks sessions even if it’s a web bot.

So is there some new mechanism that could be used to disable sessions on a per-request basis?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T12:55:19+00:00Added an answer on June 2, 2026 at 12:55 pm

    There doesn’t appear to be a built-in way to do this in Rails 3, but you can monkey patch SessionHash to get a similar result:

    class ActionDispatch::Session::AbstractStore::SessionHash
      private
        def load_for_write!
          load! unless loaded? || (@env['HTTP_USER_AGENT'] =~ BOT_REGEX)
        end
    end
    

    This will prevent the session store object from being created. You will still be able to assign into the session hash, and even access that same session data later in the same request.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an application that used Macro. In this macro I would like to
If there was a line of business application layered like this, would this be
i used to have a function defined like this (that is working fine under
I have a web application which uses URLs that look like this: http://library.example.com/Register.aspx?query=academic&key=586c70bb-5683-419c-aae9-e596af9ab66a (The
I have a string that looks like this. It's obviously a multi-line string and
Say I have an application that used an ORM (I am thinking of nHibernate
I am transitioning code that used implementations of Spring MVC's Controller to use the
I'm trying to build a simple application, with the finished program looking like this
I have inherited a 20-year-old interactive command-line unix application that is no longer supported
I have a command-line application written in C++ and built with gcc/make that runs

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.