Mohammed Ragab
Mohammed Ragab

Reputation: 41

The interoperability between redis-graph and redis-streams

I'm interested in the project and wanna understand more about the internals of RedisGraph, and looks for the feasibility of the interoperability between Redis-Streams and Redis-Graph modules.

Thus, I'm wondering on what native data structures of Redis you have built your own data structure of the 'graphdata' that is shown up when we run TYPE myGraph command.

Upvotes: 1

Views: 325

Answers (1)

Guy Korland
Guy Korland

Reputation: 9568

RedisGraph is using a new data type, it uses sparse adjacency matrices to represent graphs.

You can read more about the internal design here: https://oss.redislabs.com/redisgraph/design/

Upvotes: 1

Related Questions