diff options
author | Erik Johnston <erik@matrix.org> | 2015-12-11 16:27:38 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-12-11 16:27:38 +0000 |
commit | cde49d3d2be95994aab26d0bc8650e1279f841e1 (patch) | |
tree | 089dc58b46130562c801b25e3aab48f31193edd7 /synapse/handlers | |
parent | Merge pull request #433 from matrix-org/paul/tiny-fixes (diff) | |
parent | Include approximate count of search results (diff) | |
download | synapse-cde49d3d2be95994aab26d0bc8650e1279f841e1.tar.xz |
Merge pull request #435 from matrix-org/erikj/search
Include approximate count of search results
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/search.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/synapse/handlers/search.py b/synapse/handlers/search.py index bc79564287..99ef56871c 100644 --- a/synapse/handlers/search.py +++ b/synapse/handlers/search.py @@ -152,11 +152,15 @@ class SearchHandler(BaseHandler): highlights = set() + count = None + if order_by == "rank": search_result = yield self.store.search_msgs( room_ids, search_term, keys ) + count = search_result["count"] + if search_result["highlights"]: highlights.update(search_result["highlights"]) @@ -207,6 +211,8 @@ class SearchHandler(BaseHandler): if search_result["highlights"]: highlights.update(search_result["highlights"]) + count = search_result["count"] + results = search_result["results"] results_map = {r["event"].event_id: r for r in results} @@ -359,7 +365,7 @@ class SearchHandler(BaseHandler): rooms_cat_res = { "results": results, - "count": len(results), + "count": count, "highlights": list(highlights), } |