diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-07-27 15:58:03 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-07-27 15:58:05 -0700 |
commit | 0d3fd83493c7307a2b9593c7add90b8b6f4b4152 (patch) | |
tree | 9cbd441baccba9b936ed79bffcdc33adeecf52c0 | |
parent | 6443fd5756779e2cca986e73e5008a073ef96452 (diff) | |
download | fatcat-scholar-0d3fd83493c7307a2b9593c7add90b8b6f4b4152.tar.gz fatcat-scholar-0d3fd83493c7307a2b9593c7add90b8b6f4b4152.zip |
remove duplicate fulltext search from query
may also remove the 'title' and 'abstracts' searches, though they
currently help with boosting, and will want to measure actual
preformance difference before that change
-rw-r--r-- | fatcat_scholar/search.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fatcat_scholar/search.py b/fatcat_scholar/search.py index 3781700..1a543d9 100644 --- a/fatcat_scholar/search.py +++ b/fatcat_scholar/search.py @@ -179,7 +179,6 @@ def do_fulltext_search( "title^5", "biblio_all^3", "abstracts.body^2", - "fulltext.body", "everything", ], ) |