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

Struct VectorUint8

vectorset_commands.go:109–111  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

107// VectorUint8 represents a UINT8-encoded vector blob.
108// note: intended for search/index query commands such as FT.HYBRID.
109type VectorUint8 struct {
110 Val []byte
111}
112
113func (v *VectorUint8) Value() []any {
114 return []any{vectorFormatU8, v.Val}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected