Searching with Read the Docs

Read the Docs uses Elasticsearch to provide a better search experience. This guide is intended to show that how to add "search as you type" feature to your documentation, how to use advanced query syntax to get more accurate results and many other search features that Read the Docs supports with example searches.

You can find information on the search architecture and how we index document on our Search docs.

Search features for project admins

Enable "search as you type" in your documentation

readthedocs-sphinx-search is a Sphinx extension which integrates your documentation more closely with Read the Docs' search implementation. It adds a clean and minimal full page search UI which supports search as you type feature.

To get a glimpse of it, you can press / (forward slash) and start typing or just visit these URLs:

Search analytics

Search queries are recorded and are stored in database to provide valuable analytics to the project admins. These analytics makes it easy to know what your users are looking for in your documentation. You can see these analytics in your project admin dashboard.

注釈

Currently, this feature is in beta state and is available under a feature flag. We plan to make this available for everyone soon. If you want to test this feature out and help giving us feedback, please contact us via GitHub issues.

Search analytics in project admin dashboard

Search analytics demo

Search features for readers

Search across all projects

Our main site search supports searching for projects and searching across all projects. You can also use it to select the specific project and version to narrow down the search results.

Example queries:

Search inside subprojects

We allow projects to configured as subprojects of another project. You can read more about this in our Subprojects documentation.

If a search is made in a project which have one or more subprojects under it, the search results then also includes the results from subprojects because they share a search index with their parent and sibling projects. For example: Kombu is one of the subprojects of Celery, so if you search in Celery docs, then the results from Kombu will also be there. Example: https://docs.celeryproject.org/en/master/search.html?q=utilities&check_keywords=yes&area=default

Search query syntax

Read the Docs uses Simple Query String feature of Elasticsearch, hence the search query can be made complex to get more accurate results.

Exact phrase search with slop value

~N after a phrase signifies slop amount. It can be used to match words which are near one another.

Example queries:

Prefix query

* at the end of any term signifies a prefix query. It returns the results containg the words with specific prefix.

Example queries:

Fuzzy query

~N after a word signifies edit distance (fuzziness). This type of query is helpful when spelling of the actual keyword is unsure. It returns results that contain terms similar to the search term, as measured by a Levenshtein edit distance.

Example queries:

Using the search query syntax to build complex queries

The search query syntaxes described in the previous section can be used with one another to build complex queries.

Example queries: