From b35c9869c804f63e6b39c737b35d1e5a6757f81b Mon Sep 17 00:00:00 2001 From: James Prior Date: Wed, 17 Aug 2016 09:35:57 -0400 Subject: [PATCH] Noting Sunspot search backend I wrote a Sunspot search backend for the documentation engine and it seemed like the documentation was the best place to note its availability. --- doc/developers-guide/search-backends.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/developers-guide/search-backends.md b/doc/developers-guide/search-backends.md index 18d35cd..dc0a847 100644 --- a/doc/developers-guide/search-backends.md +++ b/doc/developers-guide/search-backends.md @@ -2,7 +2,7 @@ By default, Documentation uses a very very simple search which uses a LIKE query ## Elasticsearch -The recommended method of indexing & searching data is to use Elasticsearch. A module is provided for this [on GitHub](https://github.com/adamcooke/documentation-elasticsearch) and can be installed by following the instructions on the repo's README page. +The recommended method of indexing & searching data is to use Elasticsearch. A module is provided for this [on GitHub](https://github.com/adamcooke/documentation-elasticsearch) and can be installed by following the instructions on the repo's README page. There is also a Sunspot backend for working with Solr instances [on GitHub](https://github.com/jamesprior/documentation-sunspot) ## Creating your own search backend @@ -14,4 +14,4 @@ Once you have created a backend, you should tell Documentation to use it. Just a ```ruby Documentation.config.searcher = MyCustomSearcher.new -``` \ No newline at end of file +```