Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to have a global variable in Rails that is scoped to each request? Meaning, the variable doesn't persist across Rack requests.

I need this because I want to be able to raise events throughout the application. At the end of the request, I want to be able to collect these raised events in an array and send them to the client.

share|improve this question
What exact problem are you trying to solve here? Why are you raising events and not using something like ActiveSupport::Notifications? – Ryan Bigg Nov 11 '12 at 21:46
I want to send an array of events to the front-end along with the json response. More specifically, I want trigger events that may require a UI update. – Venkat D. Nov 11 '12 at 21:53
maybe a websocket approach would be better suited? – robkuz Nov 12 '12 at 8:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.