weaver

Fixed navbar Toggle navigation Home Install Setup Tutorial FAQ Contact Us /.nav-collapse #intro A scalable, fast, consistent graph store Weaver is a distributed graph store that provides horizontal scalability, high-performance, and strong consistency. Weaver enables users to execute transactional graph updates and queries through a simple python API. For example, you can create a user (node) and a link (edge) of a specified type in a single transaction: graph.begin_tx() graph.create_node('ayush') graph.create_edge('ayush', 'egs') graph.set_edge_property('type', 'friend') graph.end_tx() You can query a user's friends-of-friends in another transaction: two_hop_friends = graph.traverse('ayush'). \ out_edge([('type', 'friend')]).node(). \ out_edge([('type', 'friend')]).node().execute() Weav...

Linked on 2014-12-16 18:23:42 | Similar Links