context_instance=RequestContext(request))
search = Search()
+ theme_terms = search.index.analyze(text=query, field="themes_pl") \
+ + search.index.analyze(text=query, field="themes")
+
# change hints
tags = search.hint_tags(query, pdcounter=True, prefix=False)
tags = split_tags(tags)
# Boost main author/title results with mixed search, and save some of its results for end of list.
# boost author, title results
- author_title_mixed = search.search_some(query, ['authors', 'title', 'tags'])
+ author_title_mixed = search.search_some(query, ['authors', 'title', 'tags'], query_terms=theme_terms)
author_title_rest = []
for b in author_title_mixed:
# Because the query is using only one field.
text_phrase = SearchResult.aggregate(
search.search_phrase(query, 'text', snippets=True, book=False),
- search.search_some(query, ['text'], snippets=True, book=False))
+ search.search_some(query, ['text'], snippets=True, book=False, query_terms=theme_terms))
- everywhere = search.search_everywhere(query)
+ everywhere = search.search_everywhere(query, query_terms=theme_terms)
def already_found(results):
def f(e):
('text', text_phrase),
('text', everywhere)]:
res.sort(reverse=True)
- print "get snips %s, res size %d" % (field, len(res))
for r in res:
- print "Get snippets for %s" % r
search.get_snippets(r, query, field, 3)
- # for r in res:
- # for h in r.hits:
- # h['snippets'] = map(lambda s:
- # re.subn(r"(^[ \t\n]+|[ \t\n]+$)", u"",
- # re.subn(r"[ \t\n]*\n[ \t\n]*", u"\n", s)[0])[0], h['snippets'])
- # suggestion = did_you_mean(query, search.get_tokens(toks, field="SIMPLE"))
suggestion = u''
def ensure_exists(r):