Matt Sergeant wrote:
>
> On Sun, 17 Sep 2000, Chris Winters wrote:
>
> > Hi Greg,
> >
> > Check out Class::Singleton for this purpose. Works great for me.
> >
.
> One thing C::Singleton misses is a clear_instance method though, which is
> pretty much necessary for mod_perl work (I'm surp
On Sun, 17 Sep 2000, Chris Winters wrote:
> Hi Greg,
>
> Check out Class::Singleton for this purpose. Works great for me.
>
> Basically, the first time you create the object, do:
>
> my $obj = $object_class->instance( ... );
>
> Every successive time you want the object, just call:
>
> my