Reputation: 41428
Is it possible in using the neo4j import tool to specify properties of nodes that will need an index created on them? Currently, I import then run a set of Create Index on :somelable(someproperty)
statements, but this isn't the fastest with large data sets.
Upvotes: 0
Views: 95
Reputation: 41428
The answer is no, as of v2.2.3. When you use the super fast import tool (neo4j-import
), you must setup Indexes once you've imported the nodes and relationships.
Upvotes: 1