-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Blueprints is a collection of interfaces, implementations, ouplementations, and test suites for the property graph data model. Blueprints is analogous to the JDBC, but for graph databases. As such, it provides a common set of interfaces to allow developers to plug-and-play their graph database backend. Moreover, software written atop Blueprints works over all Blueprints-enabled graph databases. Within the TinkerPop software stack, Blueprints serves as the foundational technology for:
- Pipes: A lazy, data flow framework
- Gremlin: A graph traversal language
- Frames: An object-to-graph mapper
- Furnace: A graph algorithms package
- Rexster: A graph server
The documentation herein will provide information regarding the use of Blueprints.1 Please join the Gremlin users group at http://groups.google.com/group/gremlin-users for all TinkerPop related discussions.
Blueprints JavaDoc: 2.1.0
Older JavaDocs (2.x): 2.0.0
Older JavaDocs (1.x): 1.2 – 1.1 – 1.0 – 0.9 – 0.8 – 0.7 – 0.6 – 0.5 – 0.4 – 0.3 – 0.2 – 0.1
For previous wikidocs, use the following URL schema: http://tinkerpop.com/docs/wikidocs/blueprints/${version}/Home.html
<!-- neo4j used in this example -->
<dependency>
<groupId>com.tinkerpop.blueprints</groupId>
<artifactId>blueprints-neo4j-graph</artifactId>
<version>2.1.0</version>
</dependency>
Non-Maven users can get the raw jars from Apache’s Central Repository.
Graph graph = new Neo4jGraph("/tmp/my_graph");
Vertex a = graph.addVertex(null);
Vertex b = graph.addVertex(null);
a.setProperty("name","marko");
b.setProperty("name","peter");
Edge e = graph.addEdge(null, a, b, "knows");
e.setProperty("since", 2006);
graph.shutdown();
The Major Differences Between Blueprints 1.x and 2.x
- Introduction
- Advanced Graph Handling
-
Implementations
-
TinkerGraph (
TinkerGraph
) -
Neo4j Implementation (
Neo4jGraph
)-
Neo4jHA Implementation (
Neo4jHaGraph
) -
Neo4jBatch Implementation (
Neo4jBatchGraph
)
-
Neo4jHA Implementation (
-
Sail Implementation (
SailGraph
) -
OrientDB Implementation (
OrientGraph
) -
Dex Implementation (
DexGraph
) -
InfiniteGraph Implementation (
IGGraph
– 3rd party) -
Titan Implementation (
TitanGraph
– 3rd party) -
MongoDB Implementation (
MongoDBGraph
– 3rd party) -
Oracle NoSQL Implementation (
KVGraph
– 3rd party) -
Rexster Implementation (
RexsterGraph
) - Desired Implementations (help contribute)
-
TinkerGraph (
-
Ouplementations
-
JUNG Ouplementation (
GraphJung
) -
Sail Ouplementation (
GraphSail
)
-
JUNG Ouplementation (
- Utilities
- Import/Export
- Wrappers
-
Batch Implementation (
BatchGraph
) -
ReadOnly Implementation (
ReadOnlyGraph
) -
Event Implementation (
EventGraph
) -
Partition Implementation (
PartitionGraph
) -
Id Implementation (
IdGraph
)
-
Batch Implementation (
- Generators
- Related Third-Party Projects
- Bulbflow (python)
- blueprints-python (python)
- clj-blueprints2 (clojure)
- Conclusion
1 Blueprints documentation is up to date with the current Blueprints codebase, not with the latest Blueprints release.