完全匹配查询

执行简单的精确匹配查询

精确匹配查询允许您选择字段与特定值匹配的所有文档。

您可以对多种字段类型使用完全匹配查询。查询语法因类型而异。

本文中的示例使用具有以下字段的架构:

字段名称 字段类型
description TEXT
condition TAG
price NUMERIC

您可以在快速入门指南中找到有关创建索引和加载演示数据的更多详细信息。

数值字段

要对数值字段执行完全匹配查询,您需要构造具有相同 start 和 end 值的范围查询:

FT.SEARCH index "@field:[value value]"

or

FT.SEARCH index "@field:[value]" DIALECT 2 # requires v2.10

or

FT.SEARCH index "@field==value" DIALECT 2 # requires v2.10

有关范围查询的文章中所述,您还可以使用FILTER论点:

FT.SEARCH index "*" FILTER field start end

以下示例向您展示如何查询价格正好为 270 USD 的 bicycles:

Tag field

A tag is a short sequence of text, for example, "new" or "Los Angeles".

Important:
If you need to query for short texts, use a tag query instead of a full-text query. Tag fields are more space-efficient for storing index entries and often lead to lower query complexity for exact match queries.

You can construct a tag query for a single tag in the following way:

FT.SEARCH index "@field:{tag}"
Note:
The curly brackets are mandatory for tag queries.

This short example shows you how to query for new bicycles:

Use double quotes and DIALECT 2 for exact match queries involving tags that contain special characters. As of v2.10, the only character that needs escaping in queries involving double-quoted tags is the double-quote character. Here's an example of using double-quoted tags that contain special characters:

Full-text field

A detailed explanation of full-text queries is available in the full-text queries documentation. You can also query for an exact match of a phrase within a text field:

FT.SEARCH index "@field:\"phrase\""
Important:

The phrase must be wrapped by escaped double quotes for an exact match query.

You can't use a phrase that starts with a stop word.

Here is an example for finding all bicycles that have a description containing the exact text 'rough terrain':

RATE THIS PAGE
Back to top ↑