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
It should be possible for users to pass an httpx.Client/httpx.AsyncClient instance to RDFProxy's query execution utility. This allows for significant performance improvements, see Why use a Client?.
Currently, there are two strategies implemented for query execution, rdfproxy.SPARQLWrapperStrategy and rdfproxy.HttpxStrategy. The SPARQLWrapperStrategy will be discontinued shortly and the HttpxStrategy will probably be replaced with an httpx-based SPARQLWrapper class, which will implement an asynchronous query method as well as a synchronous wrapper method. See #49 .
So this issue mainly concerns this new SPARQLWrapper class.
The text was updated successfully, but these errors were encountered:
It should be possible for users to pass an
httpx.Client
/httpx.AsyncClient
instance to RDFProxy's query execution utility. This allows for significant performance improvements, see Why use a Client?.Currently, there are two strategies implemented for query execution,
rdfproxy.SPARQLWrapperStrategy
andrdfproxy.HttpxStrategy
. TheSPARQLWrapperStrategy
will be discontinued shortly and theHttpxStrategy
will probably be replaced with anhttpx
-basedSPARQLWrapper
class, which will implement an asynchronous query method as well as a synchronous wrapper method. See #49 .So this issue mainly concerns this new
SPARQLWrapper
class.The text was updated successfully, but these errors were encountered: