Re: executing external binaries

2006-01-08 Thread Dr.Ruud
Shawn Corey: > Saurabh Singhvi: >> the external binary is HUGE in terms of ram usage so i need a way to >> keep it loaded in the memory >> so that i can keep passing the next parameters, instead of loading >> it each time. > > If you're running UNIX you can set the binary's sticky bit. See `man >

Re: executing external binaries

2006-01-08 Thread Saurabh Singhvi
hi all thanks for the help!! i am hoping to use the chmod thing or the one from zentara. thanks again Saurabh On 1/8/06, zentara <[EMAIL PROTECTED]> wrote: > > On Sat, 7 Jan 2006 11:09:25 +, [EMAIL PROTECTED] (Saurabh > Singhvi) wrote: > > >hi people > > > >i have a script that executes ext

Re: executing external binaries

2006-01-07 Thread Shawn Corey
Saurabh Singhvi wrote: hi people i have a script that executes external binaries using the system command. now the problem is this: the external binary is HUGE in terms of ram usage so i need a way to keep it loaded in the memory so that i can keep passing the next parameters, instead of loadin

Re: executing external binaries

2006-01-07 Thread Dr.Ruud
Saurabh Singhvi: > the external binary is HUGE in terms of ram usage so i need a way to > keep it loaded in the memory Maybe this: http://www.clapper.org/software/daemonize/ But it most likely will still deallocate all that memory between runs. Can't you let that binary do more per run? Or jus

Re: executing external binaries

2006-01-07 Thread Tom Phoenix
On 1/7/06, Saurabh Singhvi <[EMAIL PROTECTED]> wrote: > the external binary is HUGE in terms of ram usage so i need a way to keep it > loaded in the memory > so that i can keep passing the next parameters, instead of loading it each > time. It sounds as if you need to recode that external binary s