autocomplete ordering

This commit is contained in:
Jonas Winkler 2020-10-29 14:34:02 +01:00
parent 05f20c19c3
commit 689b0db1a8

View File

@ -108,8 +108,6 @@ def query_index(ix, querystr):
def autocomplete(ix, term, limit=10):
with ix.reader() as reader:
terms = []
for t in reader.expand_prefix("content", term.lower()):
for (score, t) in reader.most_distinctive_terms("content", limit, term.lower()):
terms.append(t)
if len(terms) >= limit:
break
return terms