garlik 4store的持久化模型是什么
我需要知道 4store 如何在数据库中持久化它的三元组,如果它像一个 3 列的表,一个用于三元组中的每个元素,或者如果它是另一种方式
I need to know how 4store make the persistence of it's triples in the database, if it's like a table of 3 columns, one for each element in the triple or if it's another way
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它比这更复杂,但在本白皮书中进行了描述:
http://4store.org/publications/harris-ssws09.pdf
有一个数字索引中,2 个是 4 个元素的表,由 Patricia Trie(四元存储部分)索引,一个是从图 ID 到三元组列表的索引(三元存储部分)。
还有一个分布式哈希,它保存 URI 等。
It's somewhat more complex than that, but it's described in this whitepaper:
http://4store.org/publications/harris-ssws09.pdf
There's a number of indexes, 2 are tables of 4 elements, indexed by a Patricia Trie (the quadstore part), one is an index from graph IDs to lists of triples (the triplestore part).
There's also a distributed hash, which holds URIs and so on.