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

Struct VectorFloat64

vectorset_commands.go:85–87  ·  vectorset_commands.go::VectorFloat64

VectorFloat64 represents a FLOAT64-encoded vector blob. note: intended for search/index query commands such as FT.HYBRID.

Source from the content-addressed store, hash-verified

83// VectorFloat64 represents a FLOAT64-encoded vector blob.
84// note: intended for search/index query commands such as FT.HYBRID.
85type VectorFloat64 struct {
86 Val []byte
87}
88
89func (v *VectorFloat64) Value() []any {
90 return []any{vectorFormatF64, v.Val}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected