tolto ORDER BY per velocizzare esecuzione query

This commit is contained in:
cesare 2022-10-14 10:29:42 +02:00
parent 2d9e9a9e3d
commit 70d4a5b8bb
1 changed files with 3 additions and 2 deletions

View File

@ -29,9 +29,9 @@ SELECT (?form AS ?IRIForma) (?Rappresentazione AS ?Forma) (?lm AS ?Lemma) (?text
orl:TipoNumeroSostantivoVolgare orl:NumeroSingolareSostantivoVolgare. } orl:TipoNumeroSostantivoVolgare orl:NumeroSingolareSostantivoVolgare. }
} }
} }
ORDER BY (?Cantica) (?Canto) (?NumVerso)
LIMIT 50 LIMIT 50
` `
//ORDER BY (?Cantica) (?Canto)
var hdnquerygrammar = ` var hdnquerygrammar = `
Expression Expression
@ -113,8 +113,9 @@ WHERE {
FILTER regex(?Rappresentazione,"^farò$","i") . FILTER regex(?Rappresentazione,"^farò$","i") .
#FILTER regex(?lm,"^fare$","i") . #FILTER regex(?lm,"^fare$","i") .
FILTER langMatches(lang(?Rappresentazione),"it") FILTER langMatches(lang(?Rappresentazione),"it")
} ORDER BY ?Cantica ?Canto ?NumVerso }
LIMIT 50` LIMIT 50`
//ORDER BY ?Cantica ?Canto ?NumVerso
//Togliere LIMIT in prod //Togliere LIMIT in prod
orlprefix = 'http://dantenetwork.it/ontology/ORL/' orlprefix = 'http://dantenetwork.it/ontology/ORL/'