Access the search namespace, providing support for redis search.
(self, index_name="idx")
| 36 | return jj |
| 37 | |
| 38 | def ft(self, index_name="idx") -> Search: |
| 39 | """Access the search namespace, providing support for redis search.""" |
| 40 | |
| 41 | from .search import Search |
| 42 | |
| 43 | s = Search(client=self, index_name=index_name) |
| 44 | return s |
| 45 | |
| 46 | def ts(self) -> TimeSeries: |
| 47 | """Access the timeseries namespace, providing support for |