标签: cassandra cql cql3 cassandra-3.0
我必须开发一个存储层次结构数据的应用程序。可能是Cassandra中的数据模型以及如何获取整个层次结构(类似于MongoDB Graph查找)。 e.g。
A -> B B -> C C -> D X -> C
预期输入/输出
Input Output A A > B > C >D X X > C > D
如何实现这一点是Cassandra?
答案 0 :(得分:2)
为什么不采取http://janusgraph.org/&使用cassandra作为后端?