I need to get quite a lot of data using a remote endpoint and SPARQL. The problem is that it is terribly slow. I would like to group my queries in order to reduce the impact of network latency on the global performance scheme.
My queries are very simple:
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> SELECT * WHERE { <my_id> skos:prefLabel ?prefLabel }
But I'm not sure how to group them correctly. For example, I assume that:
PREFIX skos: <http://www.w3.org/2004/02/skos/core
- A terrible idea, as it will force the endpoint to bypass all instances before filtering them.
Any hint on how to implement this group of queries is appreciated.
source share