[email protected] wrote: > Like yo, do you fellas see what I do on your machines? > $ find /tmp -name sess\* 2>&-|wc -l > 95853 *snip* > Any better way than "leaving all those candy bar wrappers on the floor"?
The session file save path and garbage collection frequency are configurable in PHP's settings: http://de3.php.net/manual/en/session.configuration.php Additionally you might consider using memcached for storage of session data, if you are using memcached. You can enable this by setting $wgSessionsInMemcached = true; in your LocalSettings.php. -- brion _______________________________________________ Wikitech-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikitech-l
