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