| Package | Description |
|---|---|
| redis.clients.jedis | |
| redis.clients.jedis.commands |
This package contains the interfaces that contain methods representing Redis core commands.
|
| redis.clients.jedis.params |
This package contains the classes that represent optional parameters of core Redis commands.
|
| Modifier and Type | Method and Description |
|---|---|
Response<java.lang.Boolean> |
PipeliningBase.vadd(byte[] key,
float[] vector,
byte[] element,
int reduceDim,
VAddParams params) |
boolean |
UnifiedJedis.vadd(byte[] key,
float[] vector,
byte[] element,
int reduceDim,
VAddParams params) |
CommandObject<java.lang.Boolean> |
CommandObjects.vadd(byte[] key,
float[] vector,
byte[] element,
int reduceDim,
VAddParams params) |
boolean |
Jedis.vadd(byte[] key,
float[] vector,
byte[] element,
int reduceDim,
VAddParams params) |
Response<java.lang.Boolean> |
PipeliningBase.vadd(byte[] key,
float[] vector,
byte[] element,
VAddParams params) |
boolean |
UnifiedJedis.vadd(byte[] key,
float[] vector,
byte[] element,
VAddParams params) |
CommandObject<java.lang.Boolean> |
CommandObjects.vadd(byte[] key,
float[] vector,
byte[] element,
VAddParams params) |
boolean |
Jedis.vadd(byte[] key,
float[] vector,
byte[] element,
VAddParams params) |
Response<java.lang.Boolean> |
PipeliningBase.vadd(java.lang.String key,
float[] vector,
java.lang.String element,
int reduceDim,
VAddParams params) |
boolean |
UnifiedJedis.vadd(java.lang.String key,
float[] vector,
java.lang.String element,
int reduceDim,
VAddParams params) |
CommandObject<java.lang.Boolean> |
CommandObjects.vadd(java.lang.String key,
float[] vector,
java.lang.String element,
int reduceDim,
VAddParams params) |
boolean |
Jedis.vadd(java.lang.String key,
float[] vector,
java.lang.String element,
int reduceDim,
VAddParams params) |
Response<java.lang.Boolean> |
PipeliningBase.vadd(java.lang.String key,
float[] vector,
java.lang.String element,
VAddParams params) |
boolean |
UnifiedJedis.vadd(java.lang.String key,
float[] vector,
java.lang.String element,
VAddParams params) |
CommandObject<java.lang.Boolean> |
CommandObjects.vadd(java.lang.String key,
float[] vector,
java.lang.String element,
VAddParams params) |
boolean |
Jedis.vadd(java.lang.String key,
float[] vector,
java.lang.String element,
VAddParams params) |
Response<java.lang.Boolean> |
PipeliningBase.vaddFP32(byte[] key,
byte[] vectorBlob,
byte[] element,
int reduceDim,
VAddParams params) |
boolean |
UnifiedJedis.vaddFP32(byte[] key,
byte[] vectorBlob,
byte[] element,
int reduceDim,
VAddParams params) |
CommandObject<java.lang.Boolean> |
CommandObjects.vaddFP32(byte[] key,
byte[] vectorBlob,
byte[] element,
int reduceDim,
VAddParams params) |
boolean |
Jedis.vaddFP32(byte[] key,
byte[] vectorBlob,
byte[] element,
int reduceDim,
VAddParams params) |
Response<java.lang.Boolean> |
PipeliningBase.vaddFP32(byte[] key,
byte[] vectorBlob,
byte[] element,
VAddParams params) |
boolean |
UnifiedJedis.vaddFP32(byte[] key,
byte[] vectorBlob,
byte[] element,
VAddParams params) |
CommandObject<java.lang.Boolean> |
CommandObjects.vaddFP32(byte[] key,
byte[] vectorBlob,
byte[] element,
VAddParams params) |
boolean |
Jedis.vaddFP32(byte[] key,
byte[] vectorBlob,
byte[] element,
VAddParams params) |
Response<java.lang.Boolean> |
PipeliningBase.vaddFP32(java.lang.String key,
byte[] vectorBlob,
java.lang.String element,
int reduceDim,
VAddParams params) |
boolean |
UnifiedJedis.vaddFP32(java.lang.String key,
byte[] vectorBlob,
java.lang.String element,
int reduceDim,
VAddParams params) |
CommandObject<java.lang.Boolean> |
CommandObjects.vaddFP32(java.lang.String key,
byte[] vectorBlob,
java.lang.String element,
int reduceDim,
VAddParams params) |
boolean |
Jedis.vaddFP32(java.lang.String key,
byte[] vectorBlob,
java.lang.String element,
int reduceDim,
VAddParams params) |
Response<java.lang.Boolean> |
PipeliningBase.vaddFP32(java.lang.String key,
byte[] vectorBlob,
java.lang.String element,
VAddParams params) |
boolean |
UnifiedJedis.vaddFP32(java.lang.String key,
byte[] vectorBlob,
java.lang.String element,
VAddParams params) |
CommandObject<java.lang.Boolean> |
CommandObjects.vaddFP32(java.lang.String key,
byte[] vectorBlob,
java.lang.String element,
VAddParams params) |
boolean |
Jedis.vaddFP32(java.lang.String key,
byte[] vectorBlob,
java.lang.String element,
VAddParams params) |
| Modifier and Type | Method and Description |
|---|---|
Response<java.lang.Boolean> |
VectorSetPipelineBinaryCommands.vadd(byte[] key,
float[] vector,
byte[] element,
int reduceDim,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key with dimension reduction and additional parameters.
|
boolean |
VectorSetBinaryCommands.vadd(byte[] key,
float[] vector,
byte[] element,
int reduceDim,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key with dimension reduction and additional parameters.
|
Response<java.lang.Boolean> |
VectorSetPipelineBinaryCommands.vadd(byte[] key,
float[] vector,
byte[] element,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key with additional parameters.
|
boolean |
VectorSetBinaryCommands.vadd(byte[] key,
float[] vector,
byte[] element,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key with additional parameters.
|
Response<java.lang.Boolean> |
VectorSetPipelineCommands.vadd(java.lang.String key,
float[] vector,
java.lang.String element,
int reduceDim,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key with dimension reduction and additional parameters.
|
boolean |
VectorSetCommands.vadd(java.lang.String key,
float[] vector,
java.lang.String element,
int reduceDim,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key with dimension reduction and additional parameters.
|
Response<java.lang.Boolean> |
VectorSetPipelineCommands.vadd(java.lang.String key,
float[] vector,
java.lang.String element,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key with additional parameters.
|
boolean |
VectorSetCommands.vadd(java.lang.String key,
float[] vector,
java.lang.String element,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key with additional parameters.
|
Response<java.lang.Boolean> |
VectorSetPipelineBinaryCommands.vaddFP32(byte[] key,
byte[] vectorBlob,
byte[] element,
int reduceDim,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key using FP32 binary format with dimension reduction and
additional parameters.
|
boolean |
VectorSetBinaryCommands.vaddFP32(byte[] key,
byte[] vectorBlob,
byte[] element,
int reduceDim,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key using FP32 binary format with dimension reduction and
additional parameters.
|
Response<java.lang.Boolean> |
VectorSetPipelineBinaryCommands.vaddFP32(byte[] key,
byte[] vectorBlob,
byte[] element,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key using FP32 binary format with additional parameters.
|
boolean |
VectorSetBinaryCommands.vaddFP32(byte[] key,
byte[] vectorBlob,
byte[] element,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key using FP32 binary format with additional parameters.
|
Response<java.lang.Boolean> |
VectorSetPipelineCommands.vaddFP32(java.lang.String key,
byte[] vectorBlob,
java.lang.String element,
int reduceDim,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key using FP32 binary format with dimension reduction and
additional parameters.
|
boolean |
VectorSetCommands.vaddFP32(java.lang.String key,
byte[] vectorBlob,
java.lang.String element,
int reduceDim,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key using FP32 binary format with dimension reduction and
additional parameters.
|
Response<java.lang.Boolean> |
VectorSetPipelineCommands.vaddFP32(java.lang.String key,
byte[] vectorBlob,
java.lang.String element,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key using FP32 binary format with additional parameters.
|
boolean |
VectorSetCommands.vaddFP32(java.lang.String key,
byte[] vectorBlob,
java.lang.String element,
VAddParams params)
VADD Command Add a new element
into the vector set specified by key using FP32 binary format with additional parameters.
|
| Modifier and Type | Method and Description |
|---|---|
VAddParams |
VAddParams.bin()
Forces the vector to use binary quantization instead of int8.
|
VAddParams |
VAddParams.cas()
Performs the operation partially using threads, in a check-and-set style.
|
VAddParams |
VAddParams.ef(int buildExplorationFactor)
Plays a role in the effort made to find good candidates when connecting the new node to the
existing Hierarchical Navigable Small World (HNSW) graph.
|
VAddParams |
VAddParams.m(int numLinks)
The maximum number of connections that each node of the graph will have with other nodes.
|
VAddParams |
VAddParams.noQuant()
Forces the vector to be created without int8 quantization.
|
VAddParams |
VAddParams.q8()
Forces the vector to use signed 8-bit quantization.
|
VAddParams |
VAddParams.setAttr(java.lang.String attributes)
Associates attributes in the form of a JavaScript object to the newly created entry or updates
the attributes (if they already exist).
|
Copyright © 2025. All rights reserved.