# Overview

This section provides complete, real-world examples demonstrating how to use Redis Search
in common application scenarios. Each recipe includes schema design, sample data, and
query patterns you can adapt for your own use cases.

### Available Recipes

| Recipe | Description | Key Features |
|--------|-------------|--------------|
| [E-commerce Search](./e-commerce-search) | Build a product catalog with filters, faceted search, and typo tolerance | Fuzzy matching, range filters, boosting, sorting |
| [Blog Search](./blog-search) | Full-text article search with highlighted snippets | Phrase matching, date ranges, highlighting, smart matching |
| [User Directory](./user-directory) | Searchable employee directory with autocomplete | Autocomplete, nested fields, exact matching, boolean filters |

### Choosing the Right Approach

These recipes demonstrate different patterns:

- **E-commerce**: Optimized for filtering and faceted navigation with typo-tolerant search
- **Blog Search**: Optimized for content discovery with relevance ranking and visual feedback
- **User Directory**: Optimized for quick lookups with autocomplete and exact matching

### Related Tutorials

For more end-to-end examples that use Redis Search, see:

- [Building Analytics with Redis](https://upstash.com/blog/building-analytics-with-redis): Record flexible events and query them with Redis Search.
- [Agent Memory with Redis Search](/redis/tutorials/agent_memory): Recall long-term memories for AI agents with full-text queries.
