Returns the full contents of multiple documents. ### Parameters - **ids**: the ids of the saved documents.
(self, *ids)
| 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 | """ |
no test coverage detected