MCPcopy
hub / github.com/redis/redis-py / in_order

Method in_order

redis/commands/search/query.py:168–175  ·  view source on GitHub ↗

Match only documents where the query terms appear in the same order in the document. i.e., for the query "hello world", we do not match "world hello"

(self)

Source from the content-addressed store, hash-verified

166 return self
167
168 def in_order(self) -> "Query":
169 """
170 Match only documents where the query terms appear in
171 the same order in the document.
172 i.e., for the query "hello world", we do not match "world hello"
173 """
174 self._in_order = True
175 return self
176
177 def scorer(self, scorer: str) -> "Query":
178 """

Callers 2

test_clientMethod · 0.80
test_clientMethod · 0.80

Calls

no outgoing calls

Tested by 2

test_clientMethod · 0.64
test_clientMethod · 0.64