in reply to Re^2: Howto implement versions of object instances
in thread Howto implement versions of object instances

It would be much easier to run two separate mod_perl servers.
  • Comment on Re^3: Howto implement versions of object instances

Replies are listed 'Best First'.
Re^4: Howto implement versions of object instances
by pajout (Curate) on Nov 15, 2005 at 15:16 UTC
    Yes, of course, but it is not optimal in all situations. It losts memory sharing, needs httpd reconfiguring, may interfere with legacy application logic (assuming the same port of uri of family applications, for instance), multiplicates count of db connections etc.
    Thanks for reply in any case :)
      It's not as bad as all that. If you needed to run 20 processes before, you still only need 20, split between the different versions. You will see some increase in memory, but not in database connections. URI stuff shouldn't be a big deal if you are running a proxy server, and you should be running a proxy server if you run mod_perl.