We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38fb0c6 commit 6ba28d4Copy full SHA for 6ba28d4
engine/clients/redis/upload.py
@@ -86,11 +86,13 @@ def upload_batch(
86
}
87
cls.client.hsetnx(
88
str(idx),
89
- mapping={
90
- "vector": np.array(vec).astype(cls.np_data_type).tobytes(),
91
- **payload,
92
- **geopoints,
93
- },
+ "vector",
+ np.array(vec).astype(cls.np_data_type).tobytes()
+ # mapping={
+ # "vector": np.array(vec).astype(cls.np_data_type).tobytes(),
+ # **payload,
94
+ # **geopoints,
95
+ # },
96
)
97
#p.execute()
98
0 commit comments