如何使用 Allegrograph 配置 Sesame?我知道 agraph 提供了类似的 API 的 ti Sesame 的。但是,我想使用阿里巴巴。
谢谢
如何使用 Allegrograph 配置 Sesame?我知道 agraph 提供了类似的 API 的 ti Sesame 的。但是,我想使用阿里巴巴。
谢谢
Allegrograph 提供了完全兼容的Sesame Repository API实现。要将其与阿里巴巴结合,只需创建一个新的AGRepository对象,并将其提供给阿里巴巴的ObjectRepositoryFactory:
Repository agRep = new AGRepository(...);
ObjectRepository alibaba = ObjectRepositoryFactory.createRepository(agRep);
有关如何创建连接到 Allegrograph 服务器的存储库对象的详细信息,请参阅 Franz Inc. 自己的教程材料。