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

Method get

redis/commands/search/commands.py:1198–1208  ·  view source on GitHub ↗

Returns the full contents of multiple documents. ### Parameters - **ids**: the ids of the saved documents.

(self, *ids)

Source from the content-addressed store, hash-verified

1196
1197 @deprecated_function(version="2.0.0", reason="deprecated since redisearch 2.0")
1198 def get(self, *ids):
1199 """
1200 Returns the full contents of multiple documents.
1201
1202 ### Parameters
1203
1204 - **ids**: the ids of the saved documents.
1205
1206 """
1207
1208 return self.execute_command(MGET_CMD, self.index_name, *ids)
1209
1210 def info(self):
1211 """

Calls 1

execute_commandMethod · 0.45

Tested by

no test coverage detected