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
I have an RDF graph with a large number of numeric literals. When I execute the below SPARQL query, it works, but it seems to be scanning the entire graph as opposed to using an index to grab the limited range of values. Is there a way to force it to use a OPS index to get it to complete a small filter quickly?
'''
select * where {
?s ?p ?o
filter(?o>478806630)
filter(?o<478809593)
}
'''
The text was updated successfully, but these errors were encountered:
I have an RDF graph with a large number of numeric literals. When I execute the below SPARQL query, it works, but it seems to be scanning the entire graph as opposed to using an index to grab the limited range of values. Is there a way to force it to use a OPS index to get it to complete a small filter quickly?
'''
select * where {
?s ?p ?o
filter(?o>478806630)
filter(?o<478809593)
}
'''
The text was updated successfully, but these errors were encountered: