Which Triplestore for rapid semantic web developme

2020-05-16 05:55发布

Ease of installation/use is the most important factor here - not performance.

Small is OK as large datasets are not expected.

9条回答
欢心
2楼-- · 2020-05-16 06:21

4store is the easiest and fastest triple store I have worked with

查看更多
Deceive 欺骗
3楼-- · 2020-05-16 06:30

We use sesame. It is implemented in Java therefore you will have cross-platform support. If you are comfortable working with Tomcat, it should be pretty easy to install.

查看更多
贪生不怕死
4楼-- · 2020-05-16 06:36

I'd also recommend sesame, its lightweight, pretty easy to install, and provides good performance for small datasets. Query performance is far better with Sesame 1.2.x than Sesame 2.x because of the addition of context support to the 2.x series.

I've tested sesame installation/deployment with tomcat, resin, and jetty, and it worked easily with all of them. I don't recommend the bindings to RDBMS components such as Postgres or MySQL, at least in the 1.x series, performance was not acceptable, even for prototype applications. The in-memory and native implementations provide good query performance and offer simple persistence, though they lack true transactions.

Jena has a decent API, and a lot more support for databases, reasoners, etc, but has a larger footprint, and is a little more cumbersome to use on the whole.

查看更多
登录 后发表回答