Redis Caching & Messaging (Pub/Sub, Streams) · 课时

使用 RediSearch 实现全文搜索

在 Redis 数据上实现强大的全文搜索功能,增强应用能力

第 2 / 4 课10 个步骤

使用 RediSearch 实现全文搜索 是 CoddyKit 上的免费 Redis Caching & Messaging (Pub/Sub, Streams) 课时。 这是第 2 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Redis Caching & Messaging (Pub/Sub, Streams) 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Redis Caching & Messaging (Pub/Sub, Streams) 课程共包含 4 节课。

本课时的部分内容尚未翻译,以英文显示。

Unlock Powerful Search

Welcome! In this lesson, we'll dive into RediSearch, a powerful Redis module. It transforms Redis into a robust, real-time search engine.

RediSearch allows you to perform fast, complex full-text searches directly on your Redis data, enhancing your application's features significantly.

RediSearch: A Redis Module

RediSearch isn't part of Redis's core functionality; it's an add-on module. Redis modules extend Redis with new data types and commands.

Think of it as adding a specialized search engine feature directly into your Redis instance, making it incredibly efficient for search operations.

Creating Your First Index

Before you can search, you need to define an index. An index tells RediSearch which fields in your data (typically Redis Hashes) are searchable and how.

The FT.CREATE command is used to set up this schema. Let's create an index named myProductIndex with title and description text fields.

FT.CREATE myProductIndex SCHEMA title TEXT WEIGHT 5.0 description TEXT

Adding Documents to the Index

Once your index is defined, you can start adding documents to it. RediSearch indexes Redis Hashes, so you'll first store your data as a Hash, then add it to the index using FT.ADD.

The score (e.g., 1.0) influences relevance ranking.

HSET product:1 title "RediSearch Guide" description "A comprehensive guide to full-text search with Redis modules." 
HSET product:2 title "Redis Caching Strategies" description "Learn advanced caching patterns using Redis." 
FT.ADD myProductIndex product:1 1.0 FIELDS title "RediSearch Guide" description "A comprehensive guide to full-text search with Redis modules." 
FT.ADD myProductIndex product:2 1.0 FIELDS title "Redis Caching Strategies" description "Learn advanced caching patterns using Redis."

Performing Basic Searches

Now that we have data indexed, let's perform a simple full-text search using the FT.SEARCH command.

You just specify the index name and your query term. RediSearch will look for the term across all indexed text fields.

FT.SEARCH myProductIndex "search" 
FT.SEARCH myProductIndex "Redis"

Field-Specific Searches

Sometimes you need to search only within a specific field. RediSearch allows you to target your queries using the @field:term syntax.

This helps you get more precise results, for example, by searching only in the title field.

FT.SEARCH myProductIndex "@title:Redis" 
FT.SEARCH myProductIndex "@description:guide"

Prefix and Phrase Searches

RediSearch supports advanced query syntax for more flexible searches. You can use prefix searches (e.g., red* for anything starting with 'red') or search for exact phrases.

Exact phrases are enclosed in double quotes.

FT.SEARCH myProductIndex "red*" 
FT.SEARCH myProductIndex "\"full-text search\""

Using Tag Fields for Filtering

For exact filtering, like categorizing items, RediSearch offers TAG fields. These are optimized for checking exact matches rather than full-text relevance.

Let's add a category tag field and demonstrate how to query it. We'll need a new index or to alter an existing one, but for simplicity, imagine it's part of myProductIndex.

FT.CREATE booksIdx SCHEMA title TEXT author TAG 
FT.ADD booksIdx book:1 1.0 FIELDS title "Redis Essentials" author "John Doe, Jane Smith" 
FT.ADD booksIdx book:2 1.0 FIELDS title "Advanced Redis" author "Jane Smith" 
FT.SEARCH booksIdx "@author:{John Doe}" 
FT.SEARCH booksIdx "@author:{Jane Smith|John Doe}"

Quick Check

You want to create a RediSearch index named articles with two fields:

  • headline: a text field for full-text search.
  • topic: a tag field for exact topic filtering.

Which command correctly creates this index?

RediSearch: Powerful Search in Redis

In this lesson, you learned how RediSearch extends Redis with powerful full-text search capabilities.

  • We covered creating an index with a schema using FT.CREATE.
  • You saw how to add documents with FT.ADD and perform basic searches using FT.SEARCH.
  • We explored field-specific queries, prefix searches, phrase searches, and the use of TAG fields for exact filtering.

RediSearch is a fantastic tool for adding robust search features directly to your Redis applications, making data retrieval faster and more flexible!

免费开始

用 AI 导师学习 Redis Caching & Messaging (Pub/Sub, Streams) — 免费

在浏览器中编写并运行真实代码,获得全天候 AI 导师的即时帮助,并在网页或应用中继续学习。

课程
12
课程
48

常见问题解答

「使用 RediSearch 实现全文搜索」课时是免费的吗?

是的 — 「使用 RediSearch 实现全文搜索」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Redis Caching & Messaging (Pub/Sub, Streams) 课程的其余内容,请升级到 CoddyKit PRO。 Redis Caching & Messaging (Pub/Sub, Streams) 课程共包含 4 节课。

「使用 RediSearch 实现全文搜索」这节课中我会学到什么?

在 Redis 数据上实现强大的全文搜索功能,增强应用能力 你通过在浏览器中直接运行的动手代码来练习 Redis Caching & Messaging (Pub/Sub, Streams),全天候 AI 导师会在你学习这节课的过程中回答你的问题。

学习 Redis Caching & Messaging (Pub/Sub, Streams) 需要有经验吗?

无需任何先前经验。CoddyKit 上的 Redis Caching & Messaging (Pub/Sub, Streams) 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 2 节课,共 4 节。

「使用 RediSearch 实现全文搜索」课时需要多长时间?

大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。

我能在这节 Redis Caching & Messaging (Pub/Sub, Streams) 课中编写并运行代码吗?

能。每节 Redis Caching & Messaging (Pub/Sub, Streams) 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。

此课程中的所有课时

  1. Redis 模块概览
  2. 使用 RediSearch 实现全文搜索
  3. RedisJSON 与 RedisGraph 基础
  4. 使用 RedisTimeSeries 处理时间序列
← 返回 Redis Caching & Messaging (Pub/Sub, Streams)