Re: Threaded Operations - Quarkus
hadoopmarc@...
Hi Joe,
Do you mean with threadsafe transactions that requests from different client threads should be handled independently, that is in different JanusGraph Transactions?
In that case, I think you want to use a GraphTraversalSource per request like this:
g = graph.newTransaction().traversal()
Best wishes, Marc
Do you mean with threadsafe transactions that requests from different client threads should be handled independently, that is in different JanusGraph Transactions?
In that case, I think you want to use a GraphTraversalSource per request like this:
g = graph.newTransaction().traversal()
Best wishes, Marc