Reputation: 1241
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
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