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)
| 1742 | |
| 1743 | class AsyncSearchCommands(SearchCommands): |
| 1744 | async def info(self): |
| 1745 | """ |
| 1746 | Get info an stats about the the current index, including the number of |
| 1747 | documents, memory consumption, etc |
| 1748 | |
| 1749 | For more information see `FT.INFO <https://redis.io/commands/ft.info>`_. |
| 1750 | """ |
| 1751 | |
| 1752 | res = await self.execute_command(INFO_CMD, self.index_name) |
| 1753 | return self._parse_results(INFO_CMD, res) |
| 1754 | |
| 1755 | async def search( |
| 1756 | self, |
nothing calls this directly
no test coverage detected