adding RandomThread macro thanks to Wouter Vijvers

This commit is contained in:
JT Smith 2005-12-01 06:40:27 +00:00
parent ff6fa1c893
commit 440ca63333
6 changed files with 245 additions and 0 deletions

View file

@ -4,6 +4,7 @@
about 13 times faster than Date::Manip. Depending upon how date intensive
your pages are, you will see a 2% to 100% performance increase from this
change.
- Added RandomThread macro thanks to Wouter Vijvers.
- Switched from Apache::Registry/CGI to a pure mod_perl2 interface, which
increased performance by over 70% to the entire system, and in some cases
as much as 100%. See gotcha.txt for details.

View file

@ -763,6 +763,7 @@ sub updateConfigFile {
push(@{$newConfig{assets}}, "WebGUI::Asset::Wobject::StockData") unless isIn("WebGUI::Asset::Wobject::StockData",@{$newConfig{assets}});
push(@{$newConfig{assets}}, "WebGUI::Asset::Wobject::WeatherData") unless isIn("WebGUI::Asset::Wobject::WeatherData",@{$newConfig{assets}});
push(@{$newConfig{assets}}, "WebGUI::Asset::Wobject::MultiSearch") unless isIn("WebGUI::Asset::Wobject::MultiSearch",@{$newConfig{assets}});
$newConfig{macros}{RandomThread}{RandomThread};
$newConfig{gateway} = "/";
$conf->purge;
$conf->set(%newConfig);