From: Reini U. <ru...@x-...> - 2005-04-02 12:46:17
|
(YOD) schrieb: > What is global_data? I was cleaning up my database and accidentally > deleted this. It was the first item in the base and I didn't recognize it. > Another Wiki I have also has global_data (and I did not remove it (g)).. > Should that be something I should be concerned about? global_data is the one and only special page PhpWiki keeps around to store/restore its system-wide, not page-specific state. It should not be deleted, but it causes no critical errors if you already did. It could be any other pagename also. (See lib/WikiDB.php:538) PhpWiki uses the special metatag "__global" in global_data for its special data. Every WikiDB::get() - WikiDB::set() call uses this area. Currently we use it for non-critical values, the DB _timestamp, plus some global stats. See http://mywiki/global_data?action=DebugInfo or http://mywiki/global_data?action=EditMetaData > When I clean the DB of superfluous items which are not really pages in the > Wiki it seems to speed up retrieval. That and closing any htppd processes > which increase load will make the Wiki seem or appear to fly. I doubt that the pages you deleted which are just id's of links affect system performance. But closing stale httpd and mysql processes may drastically increase performance. -- Reini Urban http://xarch.tu-graz.ac.at/home/rurban http://phpwiki.org |