Sort of a Singleton
- May want to offer multiple "singletons"
- For example, named DBI connections ...
my $main = App::DBI->new('main');
my $archive = App::DBI->new('archive');
- Singleton or memoization?
- Blurs the line between the two
my $main = App::DBI->new('main');
my $archive = App::DBI->new('archive');
| Copyright © 2005-2006 David Rolsky |