使用 HTTPRepository 在 Sesame 中添加语句

发布于 2024-09-03 02:11:41 字数 665 浏览 4 评论 0原文

我正在尝试向 Sesame 存储库添加一些简单的语句,如下所示:

    RepositoryConnection connection = repository.connection
    connection.autoCommit = false
    try {
        ValueFactory vf = repository.getValueFactory()
        def dummyS = vf.createURI("http://some/uri")
        def dummyP = vf.createURI("http://some/uri/hasItem")
        uris?.each { uri ->
            connection.add(listS, listP, vf.createURI(uri))
        }
        def stmts = connection.getStatements(listS, null, null, true) ...

当使用 NativeStore 对本地 SailRepository 执行时,效果非常好。但是,当将其连接到托管在不同服务器上的 HTTPRepository 时,“添加”似乎会默默失败。没有抛出异常,但返回的stmts为空。

有人知道可能是什么原因造成的吗?提前致谢!

I'm trying to add some simple statements to a Sesame repository, like so:

    RepositoryConnection connection = repository.connection
    connection.autoCommit = false
    try {
        ValueFactory vf = repository.getValueFactory()
        def dummyS = vf.createURI("http://some/uri")
        def dummyP = vf.createURI("http://some/uri/hasItem")
        uris?.each { uri ->
            connection.add(listS, listP, vf.createURI(uri))
        }
        def stmts = connection.getStatements(listS, null, null, true) ...

This works great when executed against a local SailRepository using NativeStore. But when hooking this up to an HTTPRepository hosted on a different server, the 'add' appears to fail silently. No exception is thrown, but the returned stmts is empty.

Anybody have any ideas what could be causing this? Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

汹涌人海 2024-09-10 02:11:41

失败的原因是您使用了 autoCommit=false。在本地设置中,Sesame 的事务隔离会确保即使尚未提交,添加的数据在同一连接上查询时也是可见的。

但是,HTTPRepository 类不支持事务隔离:添加的三元组在您提交之前不可见。因此,要解决此问题,请

connection.commit(); 

在 getStatements() 调用之前添加: 应该没问题。

The reason this fails is that you are using autoCommit=false. In a local setting, Sesame's transaction isolation takes care that even when not yet committed, added data is visible when querying on the same connection.

However, the HTTPRepository class does not support transaction isolation: the added triples are not visible until you have committed. So, to fix, add:

connection.commit(); 

before the getStatements() call and you should be fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文