JanusGraph/janusgraph
GitHub で見るvalues().profile() much slower than valueMap().profile() when `query.batch` is disabled
Open
#2,185 opened on 2020年8月16日
help wantedkind/bug/possiblekind/performance
Repository metrics
- Stars
- (4,985 stars)
- PR merge metrics
- (平均マージ 3d 18h) (30d で 12 merged PRs)
説明
graph = JanusGraphFactory.open("inmemory")
g = graph.traversal()
for (i = 0; i < 100; i++) {
g.addV().property("prop", "value").iterate();
}
g.V().valueMap().profile()
g.V().values().profile()
Tested on 0.6.0 SNAPSHOT version.
