sphinx-searchHow to reload the configuration in SphinxSearch?
SphinxSearch can be reloaded using the reload
command. This command will re-read the configuration file and apply any changes.
Example
$ searchd --reload
Output example
Sphinx 2.2.11-id64-release (r5161)
Copyright (c) 2001-2018, Andrew Aksyonoff
Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
using config file '/usr/local/etc/sphinx.conf'...
reloading index 'test1'...
reloaded successfully.
The reload
command has the following parts:
searchd
: The search daemon that runs in the background and handles search requests.--reload
: The command to reload the configuration.
Helpful links
More of Sphinx Search
- How to order search results by relevance in SphinxSearch?
- How to specify stop words in SphinxSearch?
- How to use the MySQL protocol in SphinxSearch?
- How to get the version of SphinxSearch?
- How to use SphinxSearch with PHP?
- How to use regexp_filter in SphinxSearch?
- How to use query_log_format in SphinxSearch?
- How to configure max_children in SphinxSearch?
- How to use forward slash in SphinxSearch?
- How to use sql_attr_float in SphinxSearch?
See more codes...