Skip to content
stephen mallette edited this page Feb 2, 2016 · 169 revisions

IMPORTANT – TinkerPop is now a part of the Apache Software Foundation and TinkerPop 3.x is the latest incarnation of The TinkerPop. This project is TinkerPop 2.x and is no longer active.

Rexster is a graph server that exposes any Blueprints graph through REST and a binary protocol called RexPro. The HTTP web service provides standard low-level GET, POST, PUT, and DELETE methods, a flexible extensions model which allows plug-in like development for external services (such as adhoc graph queries through Gremlin), server-side “stored procedures” written in Gremlin, and a browser-based interface called The Dog House. Rexster Console makes it possible to do remote script evaluation against configured graphs inside of a Rexster Server.1

Rexster Kibbles is a collection of various Rexster server extensions provided by TinkerPop.

Please join the Gremlin users group at http://groups.google.com/group/gremlin-users for all TinkerPop related discussions.

Access graphs via the Basic REST API:

http://localhost:8182/graphs/tinkergraph/vertices/1
{
  "version":"*.*",
  "results": {
    "_type":"vertex",
    "_id":"1",
    "name":"marko",
    "age":29 
  },
  "queryTime":0.12351 
}

or through RexPro:

RexsterClient client = RexsterClientFactory.open("localhost", "tinkergraph");
List<Map<String, Object>> results = client.execute("g.v(1).map");

Rexster JavaDoc: 2.6.02.5.02.4.02.3.02.2.02.1.02.0.0
Rexster WikiDoc: 2.6.02.5.02.4.02.3.02.2.02.1.02.0.0



<dependency>
   <groupId>com.tinkerpop.rexster</groupId>
   <artifactId>rexster-core</artifactId>
   <version>2.6.0</version>
</dependency>

Non-Maven users can get the raw release jars from Apache’s Central Repository. Snapshots can be obtained from Sonatype (see Maven Repositories for more information).

1 Rexster documentation is up to date with the current Rexster codebase, not with the latest Rexster release.