sphinx search for notices

darcs-hash:20081120215041-099f7-db396a60755d551099122b58634b7550d5606d88.gz
This commit is contained in:
millette
2008-11-20 16:50:41 -05:00
parent aeaf70a472
commit bf72cde96f
5 changed files with 25 additions and 27 deletions

View File

@@ -169,4 +169,19 @@ class Memcached_DataObject extends DB_DataObject
return $c->get(Memcached_DataObject::cacheKey($cls, $pkeys, $pvals));
}
}
function getSearchEngine($table) {
require_once INSTALLDIR.'/classes/SearchEngines.php';
static $search_engine;
if (!isset($search_engine)) {
if (common_config('sphinx', 'enabled')) {
$search_engine = new SphinxSearch($this, $table);
} elseif ('mysql' === common_config('db', 'type')) {
$search_engine = new MySQLSearch($this, $table);
} else {
$search_engine = new PGSearch($this, $table);
}
}
return $search_engine;
}
}