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

Struct VectorInt8

vectorset_commands.go:97–99  ·  view source on GitHub ↗

VectorInt8 represents an INT8-encoded vector blob. note: intended for search/index query commands such as FT.HYBRID.

Source from the content-addressed store, hash-verified

95// VectorInt8 represents an INT8-encoded vector blob.
96// note: intended for search/index query commands such as FT.HYBRID.
97type VectorInt8 struct {
98 Val []byte
99}
100
101func (v *VectorInt8) Value() []any {
102 return []any{vectorFormatI8, v.Val}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected