I have a Neo4j database whose contents are dynamically generated from a large data set.
All nodes of the "entry points" are indexed to the named index ( IndexManager.forNodes(…)
). So I can find the specific node entry point.
However, now I would like to list all these specific nodes, but I can’t know on which key they were indexed.
Is there a way to list all the keys of the Neo4j Index ?
If not, what would be the best way to store these keys, a data type that is highly non-graphically oriented?
UPDATE (thanks for the details: :)): there will be more than 2 million entries in the list. The main use case would never be to update it after the initialization step, but in other use cases it may be required, so it should be somewhat scalable.
In addition, I would prefer not to kill my current resistance abilities, so storing all the keys at once rather than adding them step by step would be the last decision.
source share