summaryrefslogtreecommitdiff
path: root/SphinxSearch.md
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-07-25 21:00:24 +0300
committerAndrew Dolgov <[email protected]>2015-07-25 21:00:24 +0300
commitecdb602ec8742ec6814d019f06e9df07fc005e8a (patch)
tree70bc1179eaf5fab8021035f010756c1ba94645e6 /SphinxSearch.md
parent50ff9156c100829d806aa7e2688314531bfc6880 (diff)
fox created page: SphinxSearch
Diffstat (limited to 'SphinxSearch.md')
-rw-r--r--SphinxSearch.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/SphinxSearch.md b/SphinxSearch.md
new file mode 100644
index 0000000..d04335b
--- /dev/null
+++ b/SphinxSearch.md
@@ -0,0 +1,21 @@
+Full-text search using Sphinx
+=============================
+
+Since version:1.5.0 tt-rss is capable of using
+[Sphinx](http://www.sphinxsearch.com) search engine. Before adding
+<code>search\_sphinx</code> to <code>config.php</code> directive
+<code>PLUGINS</code>, you’ll have to install and configure Sphinx
+indexing daemon as described in the [official
+docs](http://www.sphinxsearch.com/docs/).
+
+Example configuration files attached below. Don’t forget that you need
+to update the indexes, for example using cron:
+
+ 0 0 * * * /usr/bin/indexer --rotate ttrss >/dev/null 2>&0
+ 0 */2 * * * /usr/bin/indexer --rotate delta >/dev/null 2>&0
+
+More information on delta indexing
+[here](http://sphinxsearch.com/docs/1.10/delta-updates.html)
+
+See also: [this forum
+thread](http://tt-rss.org/forum/viewtopic.php?f=16&t=2078)