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.
我考虑为此目的使用dbpedia和使用。neo4j我有两件事我不明白:
dbpedia
neo4j
DB
O(|E|+|V|)
我的意思是作为对图中节点的随机访问的访问,这些节点是否被散列以访问O(1)?
O(1)
通过ID访问是O(1) 通过索引访问通常是O(log(n)) 扫描数据库是O(n),访问节点的关系通常也是O(1)。
也就是说,您应该确保您的热数据集位于 mmio 缓冲区和缓存中,请参阅: