`VADD key (FP32 | VALUES num) vector element` note: the API is experimental and may be subject to change.
(ctx context.Context, key, element string, val Vector)
| 161 | // `VADD key (FP32 | VALUES num) vector element` |
| 162 | // note: the API is experimental and may be subject to change. |
| 163 | func (c cmdable) VAdd(ctx context.Context, key, element string, val Vector) *BoolCmd { |
| 164 | return c.VAddWithArgs(ctx, key, element, val, &VAddArgs{}) |
| 165 | } |
| 166 | |
| 167 | type VAddArgs struct { |
| 168 | // the REDUCE option must be passed immediately after the key |
nothing calls this directly
no test coverage detected