http://qs321.pair.com?node_id=673764


in reply to Re^2: How can I (safely) use packages of the same name but different versions?
in thread How can I (safely) use packages of the same name but different versions?

I've heard rumors that Perl 6 will solve this problem. Personally I don't think it's going to be all that helpful. New versions are released for a reason - leaving old code using old versions of their dependencies is only going to get you so far. Your example is a good one - if XYZ v1 and v2 are both being used to access the same physical database then you've likely got a problem that Perl alone supporting multiple version loading can't solve.

I haven't had a chance to try it yet, but I thought Erlang's facility for running multiple versions of code long enough to do a seemless cut-over sounded smart. Since everything in Erlang is a networked server the system starts up the new version and starts sending all new requests to it. Once the old version is done handling any lingering requests it gets shutdown.

-sam

  • Comment on Re^3: How can I (safely) use packages of the same name but different versions?

Replies are listed 'Best First'.
Re^4: How can I (safely) use packages of the same name but different versions?
by Errto (Vicar) on Mar 12, 2008 at 17:58 UTC
    The database thing happens to be a non-hypothetical question for me. I'm not giving details because my actual situation involves Java, not Perl, but the concept is the same.