Hello,
I'm using a neo4j db with springdata, and I want to find all nodes of a certain class type.
I have a Quiz class(@NodeEntity), and I need to find all the Quizzes in my database.
When I do template.findAll(Quiz.class), where template is a Neo4JTemplate, it takes more than 10 seconds to find 50 Quizzes (And it takes longer when the amount of quizzes increases).
Is there a way to run it faster?
I'm using neo4j 1.6, spring-data-neo4J 2.0.0.RELEASE
Thanks,
Vincent


Reply With Quote
