Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 813 Bytes

Rexster-Implementation.textile

File metadata and controls

15 lines (12 loc) · 813 Bytes

```xml

com.tinkerpop.blueprints
blueprints-rexster-graph
??

```

Rexster is a RESTful graph shell that exposes any Blueprints graph through a standalone HTTP server. RexsterGraph talks to a Rexster-exposed graph via the Rexster RESTful API. Thus, RexsterGraph can be used to communicate with a remote graph with complete HTTP-transparency to the user. RexsterGraph is composed of HTTP calls (through java.net.*) and JSON parsing.

```java
Graph graph = new RexsterGraph(“http://localhost:8182/graphs/tinkergraph”);
```