Search code examples
javagraphredisredisgraph

working with complex data type in redis


I'm trying to store nodes of a graph in redis. My node is of type HashMap(String fromNode, HashMap(String toNode,Integer weight) ) How do I store such data structure in redis?


Solution

  • At the moment RedisGraph requires UUID, please make sure UUID lib is installed on your system, to install run: apt-get install uuid-dev

    Please let me know if resolved, Thank you.