summaryrefslogtreecommitdiff
path: root/config.php-dist
diff options
context:
space:
mode:
authorRob Hoelz <[email protected]>2014-04-14 23:18:33 -0500
committerAndrew Dolgov <[email protected]>2014-04-23 04:49:54 +0000
commitbaaf4c3043f428ec009dd48b85e1c2d6cb8abee4 (patch)
tree7bdf437023fad735a58d149c4177b70b20630b97 /config.php-dist
parent87ddd5e1f9465a24fdb087356e31ab8fe73bdf0a (diff)
Make search mechanism pluggable
Currently, TinyTinyRSS can use raw SQL or the Sphinx search engine for searching. It would be nice if other search engines (such as Xapian) could be used, or if features of the underlying SQL engine (such as MySQL's FULLTEXT indexes) could be leveraged. This commit makes searching into a plugin hook, falling back to the builtin behavior if no search plugin is active. The Sphinx search behavior has been broken out into a plugin.
Diffstat (limited to 'config.php-dist')
-rw-r--r--config.php-dist4
1 files changed, 0 insertions, 4 deletions
diff --git a/config.php-dist b/config.php-dist
index 999f00773..2d7a6d195 100644
--- a/config.php-dist
+++ b/config.php-dist
@@ -108,10 +108,6 @@
// *** Sphinx search ***
// *********************
- define('SPHINX_ENABLED', false);
- // Enable fulltext search using Sphinx (http://www.sphinxsearch.com)
- // Please see http://tt-rss.org/wiki/SphinxSearch for more information.
-
define('SPHINX_SERVER', 'localhost:9312');
// Hostname:port combination for the Sphinx server.