mirror of https://mirror.osredm.com/root/redis.git
Fix version for vector set commands.json (#14005)
# Description Update `since` for all vector set commands from `1.0.0` to `8.0.0`
This commit is contained in:
parent
86c8be6368
commit
92e39cac96
|
@ -3,7 +3,7 @@
|
||||||
"summary": "Add one or more elements to a vector set, or update its vector if it already exists",
|
"summary": "Add one or more elements to a vector set, or update its vector if it already exists",
|
||||||
"complexity": "O(log(N)) for each element added, where N is the number of elements in the vector set.",
|
"complexity": "O(log(N)) for each element added, where N is the number of elements in the vector set.",
|
||||||
"group": "vector_set",
|
"group": "vector_set",
|
||||||
"since": "1.0.0",
|
"since": "8.0.0",
|
||||||
"arity": -1,
|
"arity": -1,
|
||||||
"function": "vaddCommand",
|
"function": "vaddCommand",
|
||||||
"arguments": [
|
"arguments": [
|
||||||
|
@ -102,7 +102,7 @@
|
||||||
"summary": "Remove one or more elements from a vector set",
|
"summary": "Remove one or more elements from a vector set",
|
||||||
"complexity": "O(log(N)) for each element removed, where N is the number of elements in the vector set.",
|
"complexity": "O(log(N)) for each element removed, where N is the number of elements in the vector set.",
|
||||||
"group": "vector_set",
|
"group": "vector_set",
|
||||||
"since": "1.0.0",
|
"since": "8.0.0",
|
||||||
"arity": -2,
|
"arity": -2,
|
||||||
"function": "vremCommand",
|
"function": "vremCommand",
|
||||||
"command_flags": [
|
"command_flags": [
|
||||||
|
@ -124,7 +124,7 @@
|
||||||
"summary": "Return elements by vector similarity",
|
"summary": "Return elements by vector similarity",
|
||||||
"complexity": "O(log(N)) where N is the number of elements in the vector set.",
|
"complexity": "O(log(N)) where N is the number of elements in the vector set.",
|
||||||
"group": "vector_set",
|
"group": "vector_set",
|
||||||
"since": "1.0.0",
|
"since": "8.0.0",
|
||||||
"arity": -3,
|
"arity": -3,
|
||||||
"function": "vsimCommand",
|
"function": "vsimCommand",
|
||||||
"command_flags": [
|
"command_flags": [
|
||||||
|
@ -208,7 +208,7 @@
|
||||||
"summary": "Return the dimension of vectors in the vector set",
|
"summary": "Return the dimension of vectors in the vector set",
|
||||||
"complexity": "O(1)",
|
"complexity": "O(1)",
|
||||||
"group": "vector_set",
|
"group": "vector_set",
|
||||||
"since": "1.0.0",
|
"since": "8.0.0",
|
||||||
"arity": 2,
|
"arity": 2,
|
||||||
"function": "vdimCommand",
|
"function": "vdimCommand",
|
||||||
"command_flags": [
|
"command_flags": [
|
||||||
|
@ -226,7 +226,7 @@
|
||||||
"summary": "Return the number of elements in a vector set",
|
"summary": "Return the number of elements in a vector set",
|
||||||
"complexity": "O(1)",
|
"complexity": "O(1)",
|
||||||
"group": "vector_set",
|
"group": "vector_set",
|
||||||
"since": "1.0.0",
|
"since": "8.0.0",
|
||||||
"arity": 2,
|
"arity": 2,
|
||||||
"function": "vcardCommand",
|
"function": "vcardCommand",
|
||||||
"command_flags": [
|
"command_flags": [
|
||||||
|
@ -244,7 +244,7 @@
|
||||||
"summary": "Return the vector associated with an element",
|
"summary": "Return the vector associated with an element",
|
||||||
"complexity": "O(1)",
|
"complexity": "O(1)",
|
||||||
"group": "vector_set",
|
"group": "vector_set",
|
||||||
"since": "1.0.0",
|
"since": "8.0.0",
|
||||||
"arity": -3,
|
"arity": -3,
|
||||||
"function": "vembCommand",
|
"function": "vembCommand",
|
||||||
"command_flags": [
|
"command_flags": [
|
||||||
|
@ -271,7 +271,7 @@
|
||||||
"summary": "Return the neighbors of an element at each layer in the HNSW graph",
|
"summary": "Return the neighbors of an element at each layer in the HNSW graph",
|
||||||
"complexity": "O(1)",
|
"complexity": "O(1)",
|
||||||
"group": "vector_set",
|
"group": "vector_set",
|
||||||
"since": "1.0.0",
|
"since": "8.0.0",
|
||||||
"arity": -3,
|
"arity": -3,
|
||||||
"function": "vlinksCommand",
|
"function": "vlinksCommand",
|
||||||
"command_flags": [
|
"command_flags": [
|
||||||
|
@ -304,7 +304,7 @@
|
||||||
"summary": "Return information about a vector set",
|
"summary": "Return information about a vector set",
|
||||||
"complexity": "O(1)",
|
"complexity": "O(1)",
|
||||||
"group": "vector_set",
|
"group": "vector_set",
|
||||||
"since": "1.0.0",
|
"since": "8.0.0",
|
||||||
"arity": 2,
|
"arity": 2,
|
||||||
"function": "vinfoCommand",
|
"function": "vinfoCommand",
|
||||||
"command_flags": [
|
"command_flags": [
|
||||||
|
@ -322,7 +322,7 @@
|
||||||
"summary": "Associate or remove the JSON attributes of elements",
|
"summary": "Associate or remove the JSON attributes of elements",
|
||||||
"complexity": "O(1)",
|
"complexity": "O(1)",
|
||||||
"group": "vector_set",
|
"group": "vector_set",
|
||||||
"since": "1.0.0",
|
"since": "8.0.0",
|
||||||
"arity": 4,
|
"arity": 4,
|
||||||
"function": "vsetattrCommand",
|
"function": "vsetattrCommand",
|
||||||
"command_flags": [
|
"command_flags": [
|
||||||
|
@ -347,7 +347,7 @@
|
||||||
"summary": "Retrieve the JSON attributes of elements",
|
"summary": "Retrieve the JSON attributes of elements",
|
||||||
"complexity": "O(1)",
|
"complexity": "O(1)",
|
||||||
"group": "vector_set",
|
"group": "vector_set",
|
||||||
"since": "1.0.0",
|
"since": "8.0.0",
|
||||||
"arity": 3,
|
"arity": 3,
|
||||||
"function": "vgetattrCommand",
|
"function": "vgetattrCommand",
|
||||||
"command_flags": [
|
"command_flags": [
|
||||||
|
@ -368,7 +368,7 @@
|
||||||
"summary": "Return one or multiple random members from a vector set",
|
"summary": "Return one or multiple random members from a vector set",
|
||||||
"complexity": "O(N) where N is the absolute value of the count argument.",
|
"complexity": "O(N) where N is the absolute value of the count argument.",
|
||||||
"group": "vector_set",
|
"group": "vector_set",
|
||||||
"since": "1.0.0",
|
"since": "8.0.0",
|
||||||
"arity": -2,
|
"arity": -2,
|
||||||
"function": "vrandmemberCommand",
|
"function": "vrandmemberCommand",
|
||||||
"command_flags": [
|
"command_flags": [
|
||||||
|
|
Loading…
Reference in New Issue