make performance optimization off by default

This commit is contained in:
Evan Prodromou 2011-09-19 22:01:13 -04:00
parent ddf166e144
commit 223b806a81

View File

@ -351,5 +351,6 @@ $default =
'router' =>
array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel
'discovery' =>
array('cors' => false) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
array('cors' => false), // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
'performance' => array('high' => false) // disable some features for higher performance; default false
);