CGI Session Synchronization

P

Patrick Li

I finally tracked down a bug that's been bothering me, and I'm at a
complete loss for how to fix it. If you have wisdom, please share. =)

I'm opening a CGI Session using Session.new and storing in $SESSION.

Unfortunately, my webpage has multiple windows open at a time, each of
which runs in it's own ruby VM, and accesses it's own $SESSION.

Is there a way I can synchronize my $SESSION variable?
eg. Wait for the current Session to be closed before opening it again?

eg.
In one window I'm running <Temp.rb>
which does:

$SESSION = CGI::Session.new
#bla #bla #bla
$SESSION.close

and in another window I'm running <Temp2.rb>
which does :

$SESSION = CGI::Session.new <--- I want this line to stall until
Temp.rb is done
#bla bla bla
$SESSION.close

Thank you very very much for your help.
-Patrick
 
E

Emmanuel Oga

In one window I'm running said:
and in another window I'm running <Temp2.rb>
...

Patrick: I'm not familiar with handling CGI::Session directly at the
moment, but if you have multiple ruby processes that you need to
synchronize I'm sure you will need some form of, well... Interprocess
communication. You could even use a shared file to somehow synchronize
the work of the two processes, but maybe the best option would be to
investigate ruby standard Drb library :
http://chadfowler.com/ruby/drb.html

greets
 
P

Patrick Li

Thanks for the help. It seems to be exactly what I need. I'm gonna need
to do a little research concerning distributed ruby.
-Patrick
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top