-
Is there an integration of test containers for JanusGraph? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
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 Starting inmemory storage is as easy as the following line. No other configurations are required:
See more information about this type of storage here: https://docs.janusgraph.org/storage-backend/inmemorybackend/ |
Beta Was this translation helpful? Give feedback.
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-inmemoryinmemory
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:
See m…