Run executes FT.SEARCH and returns a typed result.
()
| 202 | |
| 203 | // Run executes FT.SEARCH and returns a typed result. |
| 204 | func (b *SearchBuilder) Run() (FTSearchResult, error) { |
| 205 | cmd := b.c.FTSearchWithArgs(b.ctx, b.index, b.query, b.options) |
| 206 | return cmd.Result() |
| 207 | } |
| 208 | |
| 209 | // ---------------------- |
| 210 | // AggregateBuilder for FT.AGGREGATE |
nothing calls this directly
no test coverage detected