diff --git a/.gitignore b/.gitignore index 16a0848d7..c72b1b8e3 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ w2v word2vec.bin TODO *.txt +*.rdb diff --git a/README.md b/README.md index 32dfba365..0702c1f5b 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,7 @@ The execute the tests with: **VADD: add items into a vector set** - VADD key [REDUCE dim] FP32|VALUES vector element [CAS] [NOQUANT] [BIN] [Q8] - [EF build-exploration-factor] + VADD key [REDUCE dim] FP32|VALUES vector element [CAS] [NOQUANT | Q8 | BIN] [EF build-exploration-factor] Add a new element into the vector set specified by the key. The vector can be provided as FP32 blob of values, or as floating point diff --git a/dump.rdb b/dump.rdb deleted file mode 100644 index 7c378ad31..000000000 Binary files a/dump.rdb and /dev/null differ diff --git a/examples/movies/.gitignore b/examples/movies/.gitignore index 01d36395b..e736c6ad2 100644 --- a/examples/movies/.gitignore +++ b/examples/movies/.gitignore @@ -1 +1,2 @@ mpst_full_data.csv +partition.json diff --git a/vset.c b/vset.c index 6d9971c46..321fbf5c1 100644 --- a/vset.c +++ b/vset.c @@ -459,7 +459,7 @@ int VADD_RedisCommand(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) { cas = 0; /* Here depending on the CAS option we directly insert in a blocking - * way, or use a therad to do candidate neighbors selection and only + * way, or use a thread to do candidate neighbors selection and only * later, in the reply callback, actually add the element. */ if (!cas) {