in reply to Re: cron with perl
in thread cron with perl

the builtin ipc mechanisms for each platform...it can be done, but is often a buggy/hard road unless very experienced. i would advocate instead the daemon get requests via a tcp/ip socket. there's already plenty of example daemon code out there (which is short and sweet) and you can concentrate on application logic instead of worrying about getting (semaphore/message queue/rpc/other tight coupled) ipc right. an example of this sort of setup is oracle OEM and tomcat manager application. anyhow, just a thought, as it also scales better and you can have the "client" connect from other machine(s).
the hardest line to type correctly is: stty erase ^H

Replies are listed 'Best First'.
Re^3: cron with perl
by Pstack (Scribe) on Nov 09, 2010 at 01:51 UTC

    Thanks.

    The application indeed doesn't warrant a "buggy/hard road unless very experienced".

    I will have to research the unfamiliar tcp/ip socket route. It occurred to me that this type of functionality would surely be in sufficient demand for something to exist, if only I could find the right terms in which to express the problem.

    Thanks again.