Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Tinkerpop3 访问大小为 1-2 GB 的 Neo4J 数据库。速度非常重要,我想将整个图形加载到 RAM 中,有没有办法将图形加载到 RAM 中?我已经使用了索引,所以我不想要索引,我想要整个图形数据库在内存中
我想你可以迭代整个图来加热缓存。所以基本上,做g.V()and g.E()。
g.V()
g.E()