Jindřich Mynarz
Jindřich Mynarz
What is the custom HTTP header that is returned for partial results? Where is it documented?
@kidehen: The only headers I see in responses from Virtuoso are `Accept-Ranges`, `Cache-Control`, `Expires`, `Server`, `Connection`, `Content-Length`, `Content-Type` and `Date`. I don't see any _custom_ header, which would indicate partial...
Thanks for the explanation. However, I wasn't able to reproduce it on any other Virtuoso endpoint. For example, using the public DBpedia endpoint to execute `SELECT * WHERE { ?s...
Kingsley, it seems you haven't got my question. I'm well aware of the effect of the `ResultSetMaxRows` configuration. Let me try to clarify. My question was about the missing HTTP...
OK, I see that if I run `curl "http://dbpedia.org/sparql?query=SELECT+*+WHERE+%7B+%3Fs+%3Fp+%3Fo+.+%7D&format=text%2Fcsv" -o results.csv -D headers.txt`, I find `X-SPARQL-MaxRows: 10000` in the response headers. This is useful, but it doesn't tell if I...
@kidehen: So your recommended solution to determine if a query has partial results is to execute an additional `COUNT` query? I don't believe reporting that response to a query has...
I get that if SPARQL had cursors this would be solved differently. > What you don't do, as the server provider is implement > that in a way that simply...
I stumbled upon a similar issue. When I use a non-ASCII character in the replacement, it ends up broken: ``` sparql SELECT (REPLACE(".", "\\.", "á") AS ?s) WHERE {} #...
Was there any progress on this? While `xsd:decimal` should be lossless, Virtuoso implements it as lossy. Observe: ```sparql SELECT ?value WHERE { VALUES ?value { 0.00262335315960871 } } ``` When...
Thanks for the hints! I'm running the JSON-LD framing in Node via the [jsonld-cli](https://github.com/digitalbazaar/jsonld-cli). The data is unfortunately internal and thus unavailable. I can however try generating synthetic data of...