You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Code responsible for SPARQL query execution can be implemented as pluggable strategies with different query execution backends.
E.g. one could come up with a SPARQLWrapperStrategy and an HttpxStrategy as arguments for SPARQLModelAdapter to determine the query backend to use for RDFProxy.
This change is intended to be more of a gentle transition to httpx.
The text was updated successfully, but these errors were encountered:
Currently, rdfproxy relies on SPARQLWrapper for querying triplestores;
this is not always ideal since SPARQLWrapper occasionally gets
blacklisted e.g. by wikidata and caused severe performance issues in
the past.
The change introduces SPARQLQuery strategies for better control over
what query functionality should run in RDFProxy. The default strategy,
SPARQLWrapperStrategy, implements exactly the previous SPARQLWrapper behavior.
An HttpxStrategy implements the query functionality required by
RDFProxy using raw httpx instead of SPARQLWrapper.
Closes#169.
Currently, rdfproxy relies on SPARQLWrapper for querying triplestores;
this is not ideal since SPARQLWrapper occasionally gets
blacklisted e.g. by wikidata and caused severe performance issues in
the past.
The change introduces SPARQLQuery strategies for better control over
what SPARQL query backend should run in RDFProxy. The
SPARQLWrapperStrategy, implements exactly the previous SPARQLWrapper behavior.
An HttpxStrategy (default) implements the query functionality required by
RDFProxy using raw httpx instead of SPARQLWrapper.
Closes#169.
Currently, rdfproxy relies on SPARQLWrapper for querying triplestores;
this is not ideal since SPARQLWrapper occasionally gets
blacklisted e.g. by wikidata and caused severe performance issues in
the past.
The change introduces SPARQLQuery strategies for better control over
what SPARQL query backend should run in RDFProxy. The
SPARQLWrapperStrategy, implements exactly the previous SPARQLWrapper behavior.
An HttpxStrategy (default) implements the query functionality required by
RDFProxy using raw httpx instead of SPARQLWrapper.
Closes#169.
Code responsible for SPARQL query execution can be implemented as pluggable strategies with different query execution backends.
E.g. one could come up with a
SPARQLWrapperStrategy
and anHttpxStrategy
as arguments forSPARQLModelAdapter
to determine the query backend to use for RDFProxy.This change is intended to be more of a gentle transition to
httpx
.The text was updated successfully, but these errors were encountered: