I want to transfer part of the SQL queries to redis and ran into a problem that redis does not have an analogue of the JOIN
functionality
Example in SQL. Got 2 tables:
CREATE TABLE `games` (
`id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0',
`fname` CHAR(64) NOT NULL DEFAULT '',
...
);
CREATE TABLE `log` (
`id` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0',
`fgame_id` CHAR(64) NOT NULL DEFAULT ''
`finfo` MEDIUMTEXT NOT NULL
...
);
Wonna get game name by game id:
SELECT log.fgame_id, games.fname, log.finfo
FROM log
LEFT JOIN games ON games.id = log.fgame_id
In Redis i created index with the same names and similar structure:
FT.CREATE games
ON HASH
PREFIX 1 "games:"
SCHEMA
id TAG SORTABLE
fname TEXT SORTABLE
FT.CREATE log
ON HASH
PREFIX 1 "log:"
SCHEMA
id TAG SORTABLE
fgame_id TEXT SORTABLE
finfo TEXT NOINDEX
Is it possible to implement SQL JOIN
method on REDIS(FT.SEARCH/FT.AGGREGATE)?
There isn't support to JOIN straight from Redis using Search. Following your example you can use 2x different PREFIX to map different data tables (games: and log:). For example:
and adding the data using the shared key:
finally using FT.AGGREGATE to return the joint table, like in:
hope that help as a workaround :-)