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)
}
'''
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)
}
'''