You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@jena.apache.org by Valerio Belcastro <va...@gmail.com> on 2016/04/07 13:46:55 UTC

DatasetGraphAccessor

Hi guys,
I need an information about DatasetGraphAccessor.

When I use this interface to access a graph contained in a remote dataset,
does it downloads all the triples immediately or are they downloaded
on-demand (e.g. calling the method find())?

Thank you in advance.

Re: DatasetGraphAccessor

Posted by Andy Seaborne <an...@apache.org>.
On 07/04/16 12:46, Valerio Belcastro wrote:
> Hi guys,
> I need an information about DatasetGraphAccessor.

See the source code :-)

> When I use this interface to access a graph contained in a remote dataset,
> does it downloads all the triples immediately or are they downloaded
> on-demand (e.g. calling the method find())?

Dataset[Graph]Accessor is the SPARQL Graph Store Protocol - it only does 
GET, PUT, POST and DELETE whole graph or the local equivalent.

If you GET a graph, it is a local copy of the whole graph.

>
> Thank you in advance.
>

You may be interested in a proposed combined SPARQL API:

https://github.com/afs/jena-rdfconnection/

	Andy