Re: Best way for inter-process communication in Python

2006-12-04 Thread Gabriel Genellina
At Monday 4/12/2006 21:41, Hugo Ferreira wrote: Please keep posting on the Python list. Thx for your reply. Are you able to point me out to some documentation over that process? The primary source is the Microsoft documentation http://msdn.microsoft.com/library/default.asp?url=/library/en-us/

Re: Best way for inter-process communication in Python

2006-12-04 Thread Gabriel Genellina
At Monday 4/12/2006 14:48, Hugo Ferreira wrote: There is another option that I thought while writing this... I can use the database for data communication. Like having a table with both in and out parameters. On the client-side, I fill the in parameters columns. Then I signal the external applic

Re: Best way for inter-process communication in Python

2006-12-04 Thread Gabriel Genellina
At Monday 4/12/2006 14:24, Hugo Ferreira wrote: The client-side of this program is a function in PostgreSQL. For the sake of simplicity, let's assume it is another program in Python that will be asking the resident one for results on-demand. Let's also assume that there will be dozens of concurr

Re: Best way for inter-process communication in Python

2006-12-04 Thread Hugo Ferreira
There is another option that I thought while writing this... I can use the database for data communication. Like having a table with both in and out parameters. On the client-side, I fill the in parameters columns. Then I signal the external application which reads the parameters, and write the out

Best way for inter-process communication in Python

2006-12-04 Thread Hugo Ferreira
Hi everyone! Here's the current scenario: I have a program in Python that computes something very fast (<1s), but it takes a considerable amount of time to read the startup data (>90s). Since the startup data is pretty static, I want this program to be resident and ready in memory all the time. T