X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FSearchUpdate.php;h=be7a4c41b6e73585257940348887ac9d392c54d4;hb=7fb4f4d58efb99ed3427008a6cebf448423e9450;hp=9cbbb61aadb34b93d92f663e7a56ec3b09052a1b;hpb=ac549401d4ddaf655ec47cd1e66092fdc83ab30b;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/SearchUpdate.php b/includes/SearchUpdate.php index 9cbbb61aad..be7a4c41b6 100644 --- a/includes/SearchUpdate.php +++ b/includes/SearchUpdate.php @@ -1,14 +1,19 @@ mId = $id; @@ -23,32 +28,32 @@ class SearchUpdate { } } - function doUpdate() - { - global $wgDBminWordLen, $wgLang, $wgDisableSearchUpdate; + function doUpdate() { + global $wgDBminWordLen, $wgContLang, $wgDisableSearchUpdate; if( $wgDisableSearchUpdate || !$this->mId ) { return false; } - $lc = SearchEngine::legalSearchChars() . "&#;"; - $db =& wfGetDB( DB_MASTER ); - $searchindex = $db->tableName( 'searchindex' ); + $fname = 'SearchUpdate::doUpdate'; + wfProfileIn( $fname ); + + require_once( 'SearchEngine.php' ); + $search =& SearchEngine::create(); + $lc = $search->legalSearchChars() . '&#;'; if( $this->mText == false ) { - # Just update the title - $lowpri = $db->lowPriorityOption(); - $sql = "UPDATE $lowpri $searchindex SET si_title='" . - $db->strencode( Title::indexTitle( $this->mNamespace, $this->mTitle ) ) . - "' WHERE si_page={$this->mId}"; - $db->query( $sql, "SearchUpdate::doUpdate" ); + $search->updateTitle($this->mId, + Title::indexTitle( $this->mNamespace, $this->mTitle )); + wfProfileOut( $fname ); return; } # Language-specific strip/conversion - $text = $wgLang->stripForSearch( $this->mText ); + $text = $wgContLang->stripForSearch( $this->mText ); + wfProfileIn( $fname.'-regexps' ); $text = preg_replace( "/<\\/?\\s*[A-Za-z][A-Za-z0-9]*\\s*([^>]*?)>/", - " ", strtolower( " " . $text /*$this->mText*/ . " " ) ); # Strip HTML markup + ' ', strtolower( " " . $text /*$this->mText*/ . " " ) ); # Strip HTML markup $text = preg_replace( "/(^|\\n)\\s*==\\s+([^\\n]+)\\s+==\\s/sD", "\\2 \\2 \\2 ", $text ); # Emphasize headings @@ -74,17 +79,38 @@ class SearchUpdate { $text = preg_replace( "/[^{$lc}]+/", " ", $text ); # Handle 's, s' - $text = preg_replace( "/([{$lc}]+)'s /", "\\1 \\1's ", $text ); - $text = preg_replace( "/([{$lc}]+)s' /", "\\1s ", $text ); + # + # $text = preg_replace( "/([{$lc}]+)'s /", "\\1 \\1's ", $text ); + # $text = preg_replace( "/([{$lc}]+)s' /", "\\1s ", $text ); + # + # These tail-anchored regexps are insanely slow. The worst case comes + # when Japanese or Chinese text (ie, no word spacing) is written on + # a wiki configured for Western UTF-8 mode. The Unicode characters are + # expanded to hex codes and the "words" are very long paragraph-length + # monstrosities. On a large page the above regexps may take over 20 + # seconds *each* on a 1GHz-level processor. + # + # Following are reversed versions which are consistently fast + # (about 3 milliseconds on 1GHz-level processor). + # + $text = strrev( preg_replace( "/ s'([{$lc}]+)/", " s'\\1 \\1", strrev( $text ) ) ); + $text = strrev( preg_replace( "/ 's([{$lc}]+)/", " s\\1", strrev( $text ) ) ); # Strip wiki '' and ''' $text = preg_replace( "/''[']*/", " ", $text ); - - $sql = "REPLACE INTO $searchindex (si_page,si_title,si_text) VALUES ({$this->mId},'" . - $db->strencode( Title::indexTitle( $this->mNamespace, $this->mTitle ) ) . "','" . - $db->strencode( $text ) . "')"; - $db->query( $sql, "SearchUpdate::doUpdate" ); + wfProfileOut( "$fname-regexps" ); + $search->update($this->mId, Title::indexTitle( $this->mNamespace, $this->mTitle ), + $text); + wfProfileOut( $fname ); } } +/** + * Placeholder class + * @package MediaWiki + */ +class SearchUpdateMyISAM extends SearchUpdate { + # Inherits everything +} + ?>