Website | Source

Titan is a transactional database that can support thousands of concurrent users executing complex graph traversals in real time.

In addition, Titan provides the following features:

Quick start

<dependency>
   <groupId>com.thinkaurelius.titan</groupId>
   <artifactId>titan-core</artifactId>
   <version>1.0.0</version>
</dependency>
<!-- core, all, cassandra, hbase, berkeleyje, es, lucene -->

then

// who is hercules' grandfather?
g.V.has('name','hercules').out('father').out('father').name


Tags: storage   graph   distribution  

Last modified 07 June 2021