vote up 5 vote down star
1

Has someone experiment RDF storage solution like sesame ? I'm looking for performance review of this kind of solution compared to the traditional database solution.

flag

4 Answers

vote up 1 vote down check

There are plenny scalabity reports and benchmarks on the web about various triple-stores.

Here is a fine scalability report.

W3C itself maintain a wiki with lots of information about Large Triplestores and Benchmarks.

Follow these 3 links and take a time to read it. It's very informative. :)

link|flag
vote up 1 vote down

I've used sesame extensively in my projects at work. I've found it to be speedy and reliable enough for most situations I find myself in. It has definitely outperformed Jena's storage solutions on a variety of fronts. Sesame 1.x has faster query performance than the 2.x version, but the 2.x version has some nice features such as contexts and sparql support.

If you are looking to use a traditional relational database, you could look at something like D2RQ, or something like Owlgres (if you want inferencing).

link|flag
vote up 0 vote down

@John:

Yep, it could be a positive point. However, I wonder if select on multiple properties can be efficient. Itseems that I'll have to test it by myself.

link|flag
vote up 1 vote down

One intuition is that if you have a very large number of entities, tuple stores can save yourself the trouble of having your indexes routinely knocked out of memory as you switch between tables, and instead always have the first couple levels of the tuple index in RAM.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.