Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^2: RPC via mysql when running under websocketd?

by schweini (Friar)
on Sep 09, 2015 at 18:34 UTC ( [id://1141453]=note: print w/replies, xml ) Need Help??


in reply to Re: RPC via mysql when running under websocketd?
in thread RPC via mysql when running under websocketd?

I ended up going the unix signal route - once a process starts, it saves its PID to the database.
The process then goes into a while (<>) loop to wait for input (although i might want to change that to something non-blocking later on)
When one process wants to 'speak' to another, it stores the message in the database (could use shared memory or a file for that), looks up the other process' PID, and sends it a SIGUSR1. The other process has a signal handler installed which, when triggered, looks up the data to be received in the database, and does it's thing.
Only thing i'm worried about is race conditions between handling the signal, and waiting for and receiving input, but i think i can reduce the risk of that.
  • Comment on Re^2: RPC via mysql when running under websocketd?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1141453]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-04-23 20:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found