Re: Ideas for an efficient TDB check?

2012-05-29 Thread Dr. André Lanka
Hi Paolo, thanks for your reply and for your great piece of software. It covers almost all ideas Andy mentioned. I'll check if the tuple-by-tuple comparison Andy suggested can be done without performance issues. We use your solution with a few changes* to check our stores periodically. We are cur

Jena Rules: Execution order

2012-05-29 Thread franswors...@googlemail.com
According to the documentation "there is no guarantee of the order in which matching rules will fire". So is the general approach to instantiate two RuleReasoners when certain rules require, that other rules have been tested before? For example, let's say there is rule, that adds a statement w

Reverse proxying Fuseki behind Apache

2012-05-29 Thread Andy Bunce
Sorry this maybe a a bit off topic, but just I am just getting started.. I have Fuseki 0.2.2 snapshot running happily but I would give access via another server i.e. users would access http://host2:/fuseki/ which is proxied to http:/host1:3030/ This works (there is a css path problem) but the tpl

Re: Storing jena model to Non SQL Datastore

2012-05-29 Thread Patrick Thompson
Yes right now I am just looking to provide a basic graph implementation. So we are okay with the in memory query processing and only wanting to persist and retrieve triples stored via jena. So the link helps a lot. Thanks, P. On Tue, May 29, 2012 at 3:00 PM, Andy Seaborne wrote: > On 25/05/12

Re: how to use Lucene Highlighter with LARQ query

2012-05-29 Thread Paolo Castagna
Hi Haroon, LARQ itself does not gives you back the necessary information to highlight keywords you have searched for in the literals you get back as results. However, even if not terribly efficient, if you present your users with a limited number of results you could use Lucene and re-run your qu

Re: Storing jena model to Non SQL Datastore

2012-05-29 Thread Andy Seaborne
On 25/05/12 21:19, Patrick Thompson wrote: Thanks Marco, I am looking to find the integration points to customize to enable my model to persist to accumulo. Here is my impression of what I think needs to be done. Please correct as necessary 1) provide a custom implementation of ModelMaker wh

Re: Storing jena model to Non SQL Datastore

2012-05-29 Thread Marco Neumann
Hi Rob, just replied to Erik. And discuss off-list. (two reasons for that: the code is not open source yet and it's heavily geared towards GAE) wish we had published that Jena/GAE paper back in 2010 to make the content accessible. I certainly would be interested to feed the improved version back

Re: Storing jena model to Non SQL Datastore

2012-05-29 Thread Robert Vesse
Marco Is it possible that relevant discussion could remain on the list or that you could make a report to the list (or point us to one) that describe the approach taken to build a NoSQL backend for Jena. As Erik is trying to get at something targeting Accumulo would be particularly interesting be

Re: "My code doesn't work" :-(

2012-05-29 Thread Chris Dollin
On Tuesday, May 29, 2012 03:25:50 PM Riccardo Tammaro wrote: > Hi all. I'm trying to create a OWL file through a java application. > The file must be like this: > > > My name > My desciption > > > 100,200 > > > Jena will write correct RDF/XML files and g

Re: "My code doesn't work" :-(

2012-05-29 Thread Ian Dickinson
Hi Riccardo, On 29/05/12 14:25, Riccardo Tammaro wrote: My name My desciption 100,200 where TematicContext is my resource, contextName, contextDescription, ect.. are property and My name, MyDescription, ect... are value. I don't know if Jena c

Re: Re: Updating Tuples in the graph

2012-05-29 Thread Chris Dollin
On Tuesday, May 29, 2012 06:44:23 PM don wrote: > But I need to save the file back to > the server. May I know the procedure for doing that. It will depend on your server. What's your server? Chris -- "It does not need to take events in their correct order." /Hexwood/ Epimorphics

Re: Updating Tuples in the graph

2012-05-29 Thread Andy Seaborne
On 30/05/12 02:44, don wrote: Dear Andy, Really thankful to you for your reply. It is working fine and I am able see the result in console window when I gave the command " model.write(System.out,"RDF/XML-ABBREV");. But I need to save the file back to the server. May I know the procedure for doin

"My code doesn't work" :-(

2012-05-29 Thread Riccardo Tammaro
Hi all. I'm trying to create a OWL file through a java application. The file must be like this: My name My desciption 100,200 where TematicContext is my resource, contextName, contextDescription, ect.. are property and My name, MyDescription, ect... ar

Re: Updating Tuples in the graph

2012-05-29 Thread don
Dear Andy, Really thankful to you for your reply. It is working fine and I am able see the result in console window when I gave the command " model.write(System.out,"RDF/XML-ABBREV");. But I need to save the file back to the server. May I know the procedure for doing that. Regard

Re: Updating Tuples in the graph

2012-05-29 Thread Andy Seaborne
On 29/05/12 05:00, Don S wrote: HI, I am developing a semantic application. As a first step to understand the concept I made a simple ontology using protege and used Jena for query the data under eclipse platforms. Its working fine. But when I tried to update the triples in the graph it is not u