Skip to content
Discussion options

You must be logged in to vote

JanusGraph doesn't have Testcontainers image available. However, JanusGraph has Docker images which you can use in your Testcontainers. https://hub.docker.com/r/janusgraph/janusgraph
Moreover, you can use janusgraph-inmemory dependency in your Java application to quickly start JanusGraph server with inmemory storage: https://central.sonatype.com/artifact/org.janusgraph/janusgraph-inmemory
inmemory storage is quick and doesn't require you to setup any additional dependencies or any additional storage containers.

Starting inmemory storage is as easy as the following line. No other configurations are required:

graph = JanusGraphFactory.build().set('storage.backend', 'inmemory').open()

See m…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by porunov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants