Return the number of entries in the AutoCompleter index. For more information see `FT.SUGLEN <https://redis.io/commands/ft.suglen>`_.
(self, key: str)
| 1631 | return pipe.execute()[-1] |
| 1632 | |
| 1633 | def suglen(self, key: str) -> int: |
| 1634 | """ |
| 1635 | Return the number of entries in the AutoCompleter index. |
| 1636 | |
| 1637 | For more information see `FT.SUGLEN <https://redis.io/commands/ft.suglen>`_. |
| 1638 | """ # noqa |
| 1639 | return self.execute_command(SUGLEN_COMMAND, key) |
| 1640 | |
| 1641 | def sugdel(self, key: str, string: str) -> int: |
| 1642 | """ |