in reply to Re^2: Complete part of a cgi script before the rest
in thread Complete part of a cgi script before the rest

Just a thought. You may want to consider having the CGI process just queue a request to a daemon to prevent your server/database being overloaded by multiple simultaneous requests. You would simply do an insert into a request queue table with any necessary parameters, and have the daemon periodically check for new requests.
  • Comment on Re^3: Complete part of a cgi script before the rest

Replies are listed 'Best First'.
Re^4: Complete part of a cgi script before the rest
by afoken (Chancellor) on Apr 16, 2010 at 20:00 UTC

    Right. And if you use a cron job to run a simple script as often as required, you don't even have to write a daemon.

    Alexander

    --
    Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)