Querying, Indexing, and Full-text Search in Redis

preview_player
Показать описание
Have you ever wondered how to write SQL-like queries in Redis? Or how to index your Redis data like you index tables in a relational database? This video introduces RediSearch 2.0: the missing querying and index system for Redis.

Links:

Timeline:
00:00 Intro
01:01 Lookups by Primary Key
02:06 Indexing and Querying Secondary Attributes
06:08 Full-text Search
08:23 Aggregations
Рекомендации по теме
Комментарии
Автор

very interesting, but wondering how adding synonyms for full text search. EG, "FSD" for full stack developper, WF for wine fair, Xmas for christmas, and so on?

jeromealtariba
Автор

How to find list of unique value for particular index in redis

jayshreeshinde
Автор

Does this feature can run on AWS Redis ?

baotrietle
Автор

lots of questions around redis search integrating with spring boot is there a clear documentation around how to create index, add data to index from spring and reading the data?

saikrishna-jibk
Автор

I want to filter result for EntityId IN (1, 4, 5, 6)
Or
Not in (2, 3) ? So far this type of query only works for array with contains or notcontain. Any suggestions?

haidernaqvi
Автор

What is the best way to keep my RediSearch database up to date with my primary database when changes happen?

amsterdan
Автор

If every user hash uses the same field names, aren't you wasting memory usage on copies of those field names for every single user?

JamesHarbal
Автор

does this require redis stack? it's not clear

susiebaka
Автор

This is all interesting, but who uses Redis like this? In what universe would someone need to create object fields as hash keys instead of using id as a key and store the value as a json?

respise
Автор

Just love doing add-hoc queries using Unix timestamp? You guys should fix that…

chswin