gipouf
gipouf

Reputation: 1241

Neo4j - Is the package org.neo4j.graphdb.index thread safe?

I couldn't understand from the Neo4j documentation whether the org.neo4j.graphdb.index package implementation is thread safe, that is, can I safely access the same Index<Node> object from two different threads?

Upvotes: 0

Views: 157

Answers (1)

Nicholas
Nicholas

Reputation: 7521

Found some older posts, but yes, it's thread safe. You should be able to get one instance of it and pass around on threads.

Upvotes: 1

Related Questions