Why is findOne(<id>, <depth>) getting unacceptably slow performance when adding more nodes of the same label?
问题 CONTEXT I've been developing a spring boot website backed by a Neo4j database. It is designed to work as a university course search system. (the relevant structure is that courses have modulesets, that have modules, that are related to subjects, etc...) @JsonIdentityInfo(generator=JSOGGenerator.class) public class Course extends DomainObject { @NotNull private String name; @NotNull private String courseCode; private String description; private School school; @Convert(AttendanceTypeConverter