Re: Joseki, an RDF server. v1.0

> Or was the
> subgraph of interest defined in some other way?

I'm interested in the complete subgraph, i.e. everything connected to <a> in
any way. Our data is such that any of these subgraphs can easily fit into
memory, though the complete data set is several gigabytes. Nevertheless,
dozens of queries would be necessary in order to retrieve each subgraph,
hence my interest in being able to get everything in one step.


> SELECT * WHERE (<a>, <hasItem>, ?b) (?b <hasValue> ?v)
> will get all depths of <hasItem> relationships.

So the combined results of

  SELECT * WHERE (<a>, ?x, ?b)

and

  SELECT * WHERE (<a>, ?x, ?b) (?b ?y ?v)

would contain everything connected to <a>?


> You can add a query languages yourself - all query processors are plugins.
> The website has an explaination of how to do this.

I'd rather not invent any new query languages, but I might have a look at
reducing the number of database calls, at least for my application (not sure
a generic solution is possible, you'd probably already have implemented it
:-).


--
Eric Jain

Received on Tuesday, 21 January 2003 08:15:40 UTC