MCPcopy
hub / github.com/redis/go-redis / newFTHybridCmd

Function newFTHybridCmd

search_commands.go:2913–2926  ·  view source on GitHub ↗
(ctx context.Context, options *FTHybridOptions, args ...interface{})

Source from the content-addressed store, hash-verified

2911}
2912
2913func newFTHybridCmd(ctx context.Context, options *FTHybridOptions, args ...interface{}) *FTHybridCmd {
2914 var withCursor bool
2915 if options != nil && options.WithCursor {
2916 withCursor = true
2917 }
2918 return &FTHybridCmd{
2919 baseCmd: baseCmd{
2920 ctx: ctx,
2921 args: args,
2922 },
2923 options: options,
2924 withCursor: withCursor,
2925 }
2926}
2927
2928func (cmd *FTHybridCmd) String() string {
2929 return cmdString(cmd, cmd.val)

Callers 1

FTHybridWithArgsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected