0
votes
2answers
25 views
Is MPI good for high-volume soft-realtime IPC ?
If I had a single server and I had two process types A(Many processes many threads) and B(one process n-threads with n-cpu's), and I wanted to send a LARGE amount of one-way messages from A to B. Is …
1
vote
4answers
136 views
Erlang Documentation/SMP: single-node and multi-node per machine or per application, and the confusion that may follow.
I'm studying Erlang's process model at the moment. I have hit a snag in a tech report (section 3, paragraph 2) on Erlang:
This explains why it in some cases can be more efficient to run several …
2
votes
3answers
123 views
How do I do a non-blocking IPC read on Windows?
I have a Perl script that uses an external tool (cleartool) to gather information about a list of files. I want to use IPC to avoid spawning a new process for each file:
use IPC::Open2;
my ($cin, …
1
vote
2answers
88 views
Same Machine Erlang communication
I need an answer to the following question to help understand what approach I should be taking to interface with Erlang. AFAIK Erlang on a SMP UNIX box uses the multi-process approach. In this case it …
0
votes
0answers
35 views
Persistent Qt Local Socket IPC
I'm developing an application that uses IPC between a local server and a client application. There is nothing particular to it, as it's structured like the Qt documentation and examples.
The problem …
1
vote
8answers
284 views
What is the best way for two programs on the same machine to communicate with each other
I need to pass some data (integers) from one (C++) program to another (C#). What is the fastest way to do this?
P.S.: OS: Windows XP
0
votes
2answers
35 views
Should I use msgsnd or mq_send?
I'm learning Unix IPC, and my book only talks about the msg* family of functions. However while browsing the man pages I learned about the mq_ equivalents. …
0
votes
2answers
73 views
Sockets vs named pipes for local IPC on Windows?
Are there any reasons for favoring named pipes over sockets for local IPC (both using win-api), effectiveness-wize, resource-wize or otherwise, since both behave very much alike (and likely to be …
3
votes
3answers
94 views
Is there any opensource high-performance IPC-like msg bus library in c++?
In my current project, I have a slightly distributed architecture, i.e., several executables collaborate with each other to get things done. To make things easier, i hope i could have a reliable …
2
votes
3answers
174 views
What is an analog for win32 file locking in boost::interprocess?
What sync mechanism should I use to give exclusive access to the text file in boost?
The file will likely be accessed by threads from only one process.
0
votes
2answers
86 views
Checking the status of my PHP beanstalkd background processes
I have a website written in PHP (CakePHP) where certain resource intensive tasks are handled by a background process. This is done through the Beanstalkd message queue. I need some way to retrieve the …
1
vote
2answers
36 views
How do I send and receive real-time signals `sigqueue()` in Python?
Python provides a signals module and os.kill; does it have a facility for sigqueue() (real-time signals with attached data)? What are the alternatives?
1
vote
7answers
130 views
What is the easiest way to do inter process communication in C#?
I have two C# applications and I want one of them send two integers to the other one (this doesn't have to be fast since it's invoked only once every few seconds).
What's the easiest way to do this? …
6
votes
3answers
204 views
Is it better to use TThread’s “Synchronize” or use Window Messages for IPC between main and child thread?
I have a rather simple multi-threaded VCL gui application written with Delphi 2007. I do some processing in multiple child threads (up to 16 concurrent) that need to update a grid control on my main …
1
vote
5answers
239 views
How can I send a command to a running Java program?
I have a Java program and I want to send a command from my Win32 application. Normally I'd use WM_COPYDATA but what options do I have with Java?
