Greetings!

For relatively simple needs, check this out:

http://modperlbook.org/html/4-2-11-PerlSetVar-and-PerlAddVar.html

Cheers!


On Wed, Mar 6, 2013 at 7:00 PM, Ken Peng <yhp...@orange.fr> wrote:

> Hello,
>
> How do you setup config file in modperl web development?
> I currently use the style like a package:
>
> package Myconfig;
>
> sub new {
>     my $class = shift;
>     my $option = { key1 => 'foo', key2 => 'bar', ... };
>     bless $option,$class;
> }
>
> 1;
>
>
> Then in the modperl program:
>
> use Myconfig;
>
> my $conf = Myconfig->new;
> my $opt1 = $conf->{key1};
> my $opt2 = $conf->{key2};
> ...
>
>
> I don't know if this is a good way. Do you have suggestions?
>
> Thanks.
>



-- 
int getRandomNumber() {
    return 4; // Chosen by dice throw.
                    // guaranteed to be random...
}

Reply via email to