Reputation: 41
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
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