diff options
Diffstat (limited to '')
-rw-r--r-- | README.md | 49 |
1 files changed, 35 insertions, 14 deletions
@@ -18,14 +18,13 @@ file)! ## Sphinx-search / Manticore-search -You can use [Sphinx-search](http://sphinxsearch.com/) but it's recommand to use -[Manticore-search](https://manticoresearch.com/) since the last version of -Sphinx-search is ditribued in closed-source instead of open-source (for -version 3.x). +You must use [Manticore-search](https://manticoresearch.com/) because of the +usage of the JSON search API in the searx engines. -All explication is for Manticore-search for the moment but at many time the -term `sphinx` is used in code because Manticore-search want to keep a -compatibility with Sphinx-search. +But you can use [Sphinx-search](http://sphinxsearch.com/) if you don't want to +use the JSON search API. You need to know, as of January 2019, the last +version of Sphinx-search is distribued in closed-source instead of open-source +(for versions 3.x) # Configuration @@ -34,12 +33,10 @@ compatibility with Sphinx-search. The database used for this project is PostgreSQL, you can update login information in `config.py` file. -## Sphinx-search / Manticore-search +## Manticore-search The configuration for this is in `sphinx_search.conf` file. For update this -file please view documentation of -[Sphinx-search](http://sphinxsearch.com/docs/manual-2.3.2.html) or -[Manticore-search](https://docs.manticoresearch.com). +file please view documentation [Manticore-search](https://docs.manticoresearch.com). Keep in mind you must keep up to date the file `config.py` in accordance with the `sphinx_search.conf` file. @@ -91,12 +88,36 @@ You can now launch the server! python app.py ``` -For start searching send `GET` request to the following adresse (without `<` and -`>`): +For start searching send a `POST` request with the manticoresearch json API, +for example: + +``` +http POST 'http://localhost:8080/json/search' < mysearch.json +``` + +This is the content of the `mysearch.json`: + ``` -127.0.0.1:5000/?search=<search terms>&index=<indexed website> +{ + "index": "neodarznet", + "query": { "match": { "content": "Livet" } }, + "highlight": + { + "fields": + { + "content": {}, + "url": {}, + "title": {} + }, + "pre_tags": "_", + "post_tags": "_", + } +} ``` +You can find more information about the HTTP sear API avaiblable in the +[Manticores-earch documentation](https://docs.manticoresearch.com/latest/html/httpapi_reference.html) + Resultat are in json format. If you whant to know witch website is indexed, search in the file [sphinx_search.conf](https://git.khaganat.net/neodarz/khanindexer/blob/master/sphinx_search.conf) all the line who start by `index`. |