summaryrefslogtreecommitdiff
path: root/src/mongo/db/fts
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-49703 Added libdep linter alphabetic rule and update all libdeps list ↵Daniel Moody2020-08-271-3/+10
| | | | to be alphabetical
* SERVER-48228 Move slot-based execution engine and supporting changes into ↵Martin Neupauer2020-06-111-0/+8
| | | | | | | | | | | | | | the master branch This is an initial commit for the slot-based execution engine (SBE) which contains: * Implementation of the core slot-based engine. * The SBE stage builder, which is responsible for translating a QuerySolution tree into an SBE plan. * Other changes necessary for integration with the find command. Co-authored-by: Anton Korshunov <anton.korshunov@mongodb.com> Co-authored-by: Justin Seyster <justin.seyster@mongodb.com> Co-authored-by: David Storch <david.storch@mongodb.com>
* SERVER-48272 Reduce startup time for dynamically linked binariesAndrew Morrow2020-05-271-1/+1
| | | | | | Minimizing the list of NEEDED entries directly attached to the core programs reduces startup time for dynamically linked binaries by approximately 40 percent.
* SERVER-47928 Fix quadradic KeyString insert behavior in fts indexes.Henrik Edin2020-05-053-45/+87
|
* SERVER-45243 generate_stop_words.py simplificationBilly Donahue2020-04-211-6/+4
|
* SERVER-46127 unit tests log to a kTest componentGabriel Russell2020-04-141-1/+1
|
* SERVER-47349 Use flat_set instead of set for KeyStringSet and MultikeyPathsHenrik Edin2020-04-081-1/+1
| | | | So we can reduce the amount of small memory allocations and re-use allocated memory.
* SERVER-45567 removing util/log.h where I canGabriel Russell2020-02-211-1/+0
| | | | | | | o converting some log lines that were missed o fixing some missing includes create mode 100644 src/mongo/transport/ismaster_metrics.cpp
* SERVER-45363 Base weight for text index on exact match not possible matchTed Tuckman2020-01-271-1/+1
|
* SERVER-43128 fix windows compileBenety Goh2019-09-251-3/+3
|
* SERVER-43128 include cctype for tolowerBilly Donahue2019-09-241-0/+1
|
* SERVER-43128 Simplify FTS language registryBilly Donahue2019-09-2412-478/+252
|
* SERVER-41726 Make FTSAccessMethod generate keys with KeyStringGregory Noma2019-08-152-63/+41
|
* SERVER-41721 Make IndexAccessMethod::getKeys output a KeyString setGregory Noma2019-08-083-50/+100
|
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-2731-108/+89
|
* SERVER-36440 remove code and tests about text index limitDaniel Solnik2019-06-271-26/+0
|
* SERVER-41809 Collapse unit tests on a per-directory basisAndrew Morrow2019-06-202-46/+30
|
* SERVER-41071 Replace NULL and 0 with nullptrA. Jesse Jiryu Davis2019-06-143-5/+5
|
* SERVER-39339 Remove `stdx/memory.h`ADAM David Alan Martin2019-06-105-10/+14
|
* SERVER-40802 Don't include boost/algorithm/string.hpp in mongo_uri.hMathias Stearn2019-05-011-0/+4
|
* SERVER-40476 merge contents of utils/stringutils into utils/str.Billy Donahue2019-04-119-22/+10
|
* SERVER-40543 gen_casefold_map.py force a utf-8 when reading filesMark Benvenuto2019-04-101-1/+1
|
* SERVER-40542 Remove references to pip2Mathew Robinson2019-04-104-4/+4
|
* SERVER-40543 gen_casefold_map.py does not work with CRLF line endingsMark Benvenuto2019-04-091-2/+1
|
* SERVER-40476 remove mongoutils::strBilly Donahue2019-04-0912-34/+27
| | | | | | Rename utils/mongoutils/str.h => utils/str.h Rename namespace mongoutils::str => str Rename mongo::strcasecmp => str::caseInsensitiveCompare.
* SERVER-32295 Support Python 3Mathew Robinson2019-04-086-32/+46
|
* SERVER-40476 remove mongoutils::str::equalsBilly Donahue2019-04-082-19/+21
|
* SERVER-40357 expand all calls to MONGO_DISALLOW_COPYINGBilly Donahue2019-03-2811-16/+20
| | | | | | | | | | | produced by: hits="$(git grep -n MONGO_DISALLOW_COPYING | cut -d: -f1 )" for f in "$hits"; do sed -i.orig ' s/^\( *\)MONGO_DISALLOW_COPYING(\(.*\));/\1\2(const \2\&) = delete;\n\1\2\& operator=(const \2\&) = delete;/; ' $f done
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-1362-115/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-38176 Compile with /permissive- on MSVC to make the compiler strictly ↵Henrik Edin2019-02-011-1/+1
| | | | standard conformant.
* SERVER-37909 Fix GCC-8 in some tests.ADAM David Alan Martin2018-11-081-4/+4
| | | | | | | GCC-8 doesn't treat `_Pragma(...)` ignore directives in macros the way that Clang does. Instead of this technique, we'll make the requirement on `ASSERT_THROWS`' parameter an expression, not a statement.
* SERVER-37651 Update copyright noticesRamon Fernandez2018-10-241-8/+9
|
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-2266-1036/+1158
|
* SERVER-36015 Remove references to system.namespaces and system.indexesDianna Hohensee2018-08-291-4/+3
|
* SERVER-22078 Remove term list limits for text index in FCV 4.2Xiangyu Yao2018-08-131-13/+24
|
* SERVER-30870 Enable Unicode Fast Byte Vector Optimization for arm64Daniel Stewart2018-05-072-0/+159
| | | | closes #1222
* SERVER-33395 Add configure check for vec_vbpermq outputJason Carey2018-05-041-1/+2
| | | | | | | GCC changed the output of vec_vbpermq between 5.4.0 and later. This seems likely to be a bug, probably in earlier versions of gcc. Rather than attempt to enumerate how the compiler versions work, this adds a runtime configure check which will select the lane that works.
* SERVER-34307 replace invariant(false) with MONGO_UNREACHABLEBenety Goh2018-04-044-4/+4
|
* SERVER-33275 Remove `platform/unordered_`* headersADAM David Alan Martin2018-02-141-6/+4
| | | | | | These headers date from before C++11 support and the `::mongo::stdx::` namespace. They can be removed and uses of the names therein can be changed to `::mongo::stdx::unordered_`* forms.
* SERVER-32479 Make all library names uniqueAndrew Morrow2017-12-291-4/+4
|
* SERVER-32130 stop printing arguments in code generation toolsMathias Stearn2017-12-081-6/+0
|
* SERVER-17414 Enable Warnings As Errors on Windows, and disable/fix warningsMark Benvenuto2017-10-201-26/+28
|
* SERVER-31119 Make string.cpp compatible with boost 1.62Jelle van der Waa2017-09-201-1/+8
| | | | | | | Add a conditional for boost > 1.62 compatibility, boyer_moore_search now returns an std::pair. Signed-off-by: Andrew Morrow <acm@mongodb.com>
* SERVER-30580 Eliminate UserException and MsgAssertionException typesMathias Stearn2017-08-162-6/+6
| | | | All users were converted to just use AssertionException.
* SERVER-29814 Move BSONObj::MatchType/BSONElement::getGtLtOp() to matcherJames Wahlin2017-07-212-42/+27
|
* SERVER-29220 fix lintAndrew Morrow2017-05-251-0/+28
|
* SERVER-29220 Default to archive based linkingAndrew Morrow2017-05-242-0/+3
|
* SERVER-28155 Get rid of the 'mongoscore' sharding libraryKaloian Manassiev2017-03-011-5/+0
|
* SERVER-27392 fix bug in FTS index's check for indexed arraysDavid Storch2017-02-012-13/+109
|
* SERVER-27497 Scope SCons Environment changes narrowlyAndrew Morrow2017-01-032-0/+7
|