SphinxSearch

From New World Encyclopedia
Revision as of 01:16, 8 October 2007 by Svemir Brkic (talk | contribs) (Set the date)
SphinxSearch
Purpose Replaces default MediaWiki search with Sphinx
Author Svemir Brkic
Version 0.3 (October 7, 2007)
Extension files
sphinx.conf

SphinxSearch.php
SphinxSearch_body.php

Introduction

This site uses Sphinx full-text search engine as a replacement for standard MediaWiki search. Our code is based on SphinxSearch extension by Paul Grinberg. The changes we made include:

  • Changed the overall model based on LuceneSearch extension to make Sphinx the main (and only) search engine on this wiki.
  • Added support for the Go button so user is redirected to an exact title match automatically.
  • Changed the main data fetch query for the indexer to make it somewhat faster. Added page_id attribute to the index to make fetching of search results faster as well.
  • Added an incremental index. We index the entire wiki every night and update the incremental index with recently changed articles several times a day.
  • Tweaked handling of namespaces, so initial search uses namespaces from user's preferences.

Additional change in version 0.3

  • Changed the queries to use page_id from page table as the primary key (instead of old_id from text table.) This makes it possible to avoid duplicates when using the incremental index.
  • Changed suggested folder and config names in sphinx.config file. You do not need to use our suggested names, we just like them better this way.

Install Sphinx

Before you install this extension, you need to download and install Sphinx.

Now create a sphinx.conf file. Sphinx comes with well-commented sample file, but if you want to use our code, you need to start with our sphinx.conf and modify it further if necessary:

  • You will need to update the file paths and table names (if you use some prefix.)
  • If your wiki is very large, you may want to consider specifying a query range in the conf file.
  • If your wiki is not in English, you will need to change (or remove) the morphology attribute.

When done, run the indexer:

indexer --config /path/to/conf/sphinx.conf --all --rotate

You will see a report about documents being fetched etc. If everything seems fine, do a test search:

search --config /path/to/conf/sphinx.conf "test search"

You will see the result stats immediately (Sphinx is FAST.) Note that the article data you see at this point comes from the sql_query_info in sphinx.conf file. In the extension we can get to the actual article content because we have text old_id available as an extra attribute. It would be slow to fetch article content on the command line (we would have to join page, revision, and text tables,) so we just fetch page_title and page_namespace at this point.

Install the extension

  • Copy the sphinxapi.php file from your Sphinx installation api folder into SphinxSearch.
  • Add this line to your LocalSettings.php
require_once( "$IP/extensions/SphinxSearch/SphinxSearch.php" );

Keep the index updated

Setup a cron job for the full index - for example once every night:

0 3 * * * /usr/local/bin/indexer --config /usr/local/etc/sphinx.conf wiki --rotate > /dev/null 2>&1

Setup a more frequent cron to update the smaller index regularly:

0 9,15,22 * * * /usr/local/bin/indexer --config /usr/local/etc/sphinx.conf wikilatest > /dev/null --rotate 2>&1

Hacks and TODOs

  • We use SPH_MATCH_EXTENDED for better relevance weights, but we process the search term to make it assume an OR instead of an AND on multiple. This will be replaced with an option on the search form.
  • Due to the way the weights are calculated, it is hard to get title matches to always appear first. That can be solved by internally running the search twice, first time with @page_title attribute, second time with @old_text.

Feedback

This wiki uses a separate system for public feedback. Click the feedback tab and register (it is an integrated Wordpress blog.) You may also send an email directly to svemir at thirdblessing dot net.