Skip to content

Commit 11448d5

Browse files
Milvus-doc-botMilvus-doc-bot
authored andcommitted
Generate en docs
1 parent 3f50791 commit 11448d5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

localization/v2.5.x/site/en/userGuide/search-query-get/keyword-match.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -451,4 +451,10 @@ curl --request POST \
451451
</button></h2><ul>
452452
<li><p>Enabling text matching for a field triggers the creation of an inverted index, which consumes storage resources. Consider storage impact when deciding to enable this feature, as it varies based on text size, unique tokens, and the analyzer used.​</p></li>
453453
<li><p>Once you’ve defined an analyzer in your schema, its settings become permanent for that collection. If you decide that a different analyzer would better suit your needs, you may consider dropping the existing collection and creating a new one with the desired analyzer configuration.​</p></li>
454+
<li><p>Escape rules in <code translate="no">filter</code> expressions:</p>
455+
<ul>
456+
<li>Characters enclosed in double quotes or single quotes within expressions are interpreted as string constants. If the string constant includes escape characters, the escape characters must be represented with escape sequence. For example, use <code translate="no">\\</code> to represent <code translate="no">\</code>, <code translate="no">\\t</code> to represent a tab <code translate="no">\t</code>, and <code translate="no">\\n</code> to represent a newline.</li>
457+
<li>If a string constant is enclosed by single quotes, a single quote within the constant should be represented as <code translate="no">\\'</code> while a double quote can be represented as either <code translate="no">&quot;</code> or <code translate="no">\\&quot;</code>. Example: <code translate="no">'It\\'s milvus'</code>.</li>
458+
<li>If a string constant is enclosed by double quotes, a double quote within the constant should be represented as <code translate="no">\\&quot;</code> while a single quote can be represented as either <code translate="no">'</code> or <code translate="no">\\'</code>. Example: <code translate="no">&quot;He said \\&quot;Hi\\&quot;&quot;</code>.</li>
459+
</ul></li>
454460
</ul>

0 commit comments

Comments
 (0)