Re: Keep a script running in the background

2008-06-04 Thread M.-A. Lemburg
On 2008-06-04 01:33, Guillermo wrote: These are the basic requirements: Script A must keep a dictionary in memory constantly and script B must be able to access and update this dictionary at any time. Script B will start and end several times, but script A would ideally keep running until it's e

Re: Keep a script running in the background

2008-06-03 Thread Guillermo
These are the basic requirements: Script A must keep a dictionary in memory constantly and script B must be able to access and update this dictionary at any time. Script B will start and end several times, but script A would ideally keep running until it's explicitly shut down. I have the feelin

Re: Keep a script running in the background

2008-06-03 Thread Tobiah
> I need a script to keep running in the background after it's loaded > some data. It will make this data available to the main program in the > form of a dictionary, but I don't want to reload the calculated data > every time the user needs it via the main program. If it were me, I'd go with a d

Re: Keep a script running in the background

2008-06-03 Thread subeen
On Jun 3, 10:07 pm, Guillermo <[EMAIL PROTECTED]> wrote: > Hi, > > I need a script to keep running in the background after it's loaded > some data. It will make this data available to the main program in the > form of a dictionary, but I don't want to reload the calculated data > every time the use

Re: Keep a script running in the background

2008-06-03 Thread Bjoern Schliessmann
Guillermo wrote: > I need a script to keep running in the background after it's > loaded some data. It will make this data available to the main > program in the form of a dictionary, but I don't want to reload > the calculated data every time the user needs it via the main > program. > > I won't

Re: Keep a script running in the background

2008-06-03 Thread Daniel Fetchinson
> I need a script to keep running in the background after it's loaded > some data. It will make this data available to the main program in the > form of a dictionary, but I don't want to reload the calculated data > every time the user needs it via the main program. > > I won't be working with an U

Keep a script running in the background

2008-06-03 Thread Guillermo
Hi, I need a script to keep running in the background after it's loaded some data. It will make this data available to the main program in the form of a dictionary, but I don't want to reload the calculated data every time the user needs it via the main program. I won't be working with an UI, ho