Skip to content
spmallette edited this page Apr 19, 2013 · 169 revisions

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.

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

Rexster JavaDoc: 2.3.02.2.02.1.02.0.0
Rexster WikiDoc: 2.3.02.2.02.1.02.0.0

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

Non-Maven users can get the raw jars from Apache’s Central Repository.

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

Clone this wiki locally