0

We are planning to use tinkerpop for our project. I had a few doubts about this:

  1. I see that there are GremlinServer.start() GremlinServer.stop() APIs which I can use to get gremlin server running in embedded style. This means it will not start any other process unlike when we execute gremlin server bash script. Is this correct?

  2. My graph size could be large and so I may not want my graph to be in-memory always like it is the case with tinkerpop graph. So if I have my graph in gremlin server, how will it be stored? In memory only or is there a way to persist it?

Thanks.

Neha
  • 225
  • 1
  • 5
  • 12

1 Answers1

0
  1. I think that depends on what you pass into the constructor as specified here

  2. There are several persistence layers you can look into which implement the gremlin server API. For example you can go open source with TitanDB or go for an enterprise solution with DSE Graph.

Filipe Teixeira
  • 3,565
  • 1
  • 25
  • 45