in reply to Sharing Configuration between Multiple CGI Scripts (was: How difficult can)

I like to use the storable module for this, just do a:

use Storable; nstore \%table, 'configfile'; $hashref = retrieve('configfile');

seems to load very fast and works for most of my needs.

-Waswas
Edited to s/store/nstore/ as nstore creates a more portable format (config file across multiple platforms etc..)