Redis 7 New Features: What Is Redis Stack
Contents
Redis 7 Key Changes
Multi-threaded IO
# redis.conf
io-threads 4
io-threads-do-reads yes2-3x performance improvement.
Redis Stack
Redis Stack = Redis + search + JSON + graph DB.
# install
docker run -d --name redis-stack redis/redis-stack:latest
# use search
FT.SEARCH idx "llm @category:AI"Selection Advice
| Scenario | Recommended |
|---|---|
| cache | Redis 7 |
| search | Redis Stack |
| simple KV | Redis 7 |
| complex queries | PostgreSQL |
Conclusion
Redis 7 + Stack is the trend. But don’t replace PostgreSQL with it.