Get info an stats about the the current index, including the number of documents, memory consumption, etc For more information see `FT.INFO <https://redis.io/commands/ft.info>`_.
(self)
| 1208 | return self.execute_command(MGET_CMD, self.index_name, *ids) |
| 1209 | |
| 1210 | def info(self): |
| 1211 | """ |
| 1212 | Get info an stats about the the current index, including the number of |
| 1213 | documents, memory consumption, etc |
| 1214 | |
| 1215 | For more information see `FT.INFO <https://redis.io/commands/ft.info>`_. |
| 1216 | """ |
| 1217 | |
| 1218 | res = self.execute_command(INFO_CMD, self.index_name) |
| 1219 | return self._parse_results(INFO_CMD, res) |
| 1220 | |
| 1221 | def get_params_args( |
| 1222 | self, query_params: Optional[Dict[str, Union[str, int, float, bytes]]] |
nothing calls this directly
no test coverage detected