File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -82,16 +82,17 @@ support boolean text search queries:
82
82
However, ``text`` indexes have large storage requirements and incur
83
83
**significant** performance costs:
84
84
85
- - Text indexes can be large. They contain one index entry for each
86
- unique word indexed for each document inserted.
85
+ - Text indexes can be large. They contain one index entry for each
86
+ unique post-stemmed word in each indexed field for each document
87
+ inserted.
87
88
88
89
- Building a ``text`` index is very similar to building a large
89
90
multi-key index, and therefore may take longer than building a
90
91
simple ordered (scalar) index.
91
92
92
93
- ``text`` indexes will impede insertion throughput, because MongoDB
93
- must add an index entry for each unique word in each indexed field of
94
- each new source document.
94
+ must add an index entry for each unique post-stemmed word in each
95
+ indexed field of each new source document.
95
96
96
97
- some :dbcommand:`text` searches may affect performance on your
97
98
:program:`mongod`, particularly for negation queries and phrase
You can’t perform that action at this time.
0 commit comments