Skip to content

Commit cff079b

Browse files
Milvus-doc-botMilvus-doc-bot
authored andcommitted
Release new docs to master
1 parent 79a6e8e commit cff079b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

v2.6.x/site/en/userGuide/search-query-get/boolean/basic-operators.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,12 @@ This is useful when you want to check for membership in a list of values.
9898

9999
The `LIKE` operator is used for pattern matching in string fields. It can match substrings in different positions within the text: as a **prefix**, **infix**, or **suffix**. The `LIKE` operator uses the `%` symbol as a wildcard, which can match any number of characters (including zero).
100100

101+
<div class="alert note">
102+
103+
In most cases, <strong>infix</strong> or <strong>suffix</strong> matching is significantly slower than prefix matching. Use them with caution if performance is critical.
104+
105+
</div>
106+
101107
### Prefix Match (Starts With)
102108

103109
To perform a **prefix** match, where the string starts with a given pattern, you can place the pattern at the beginning and use `%` to match any characters following it. For example, to find all products whose `name` starts with "Prod":

0 commit comments

Comments
 (0)