in reply to sharing a complex set of objects between httpd processes

The next step is obvious: how can I get all of the httpd processes to share that single factory object and all its attendant machinery?

Move application logic into a single application server that the httpd processes make requests of. You an even pool connections to the application process.

  • Comment on Re: sharing a complex set of objects between httpd processes

Replies are listed 'Best First'.
Re: Re: sharing a complex set of objects between httpd processes
by perrin (Chancellor) on Mar 15, 2003 at 14:25 UTC
    And will that application server be a single process? If not, he has the same problem all over again.
      This actually brings up an interesting issue - is there some clean and easy implementation that does this application server-type thing? I would suppose you can create a SOAP::Lite server or something, but it sounds like it would involve a lot of bandwidth ...

      ------
      We are the carpenters and bricklayers of the Information Age.

      Don't go borrowing trouble. For programmers, this means Worry only about what you need to implement.

      Please remember that I'm crufty and crochety. All opinions are purely mine and all code is untested, unless otherwise specified.

        Which application server-type thing is that? I've never found any problem with using mod_perl as an application server. Can you define something that you need which you don't get from mod_perl plus some CPAN modules?