| Package | Description |
|---|---|
| io.valkey | |
| io.valkey.commands |
This package contains the interfaces that contain methods representing Redis core commands.
|
| io.valkey.params |
This package contains the classes that represent optional parameters of core Redis commands.
|
| Modifier and Type | Method and Description |
|---|---|
CommandObject<byte[]> |
CommandObjects.xadd(byte[] key,
XAddParams params,
Map<byte[],byte[]> hash) |
Response<byte[]> |
PipeliningBase.xadd(byte[] key,
XAddParams params,
Map<byte[],byte[]> hash) |
byte[] |
Jedis.xadd(byte[] key,
XAddParams params,
Map<byte[],byte[]> hash) |
byte[] |
UnifiedJedis.xadd(byte[] key,
XAddParams params,
Map<byte[],byte[]> hash) |
CommandObject<StreamEntryID> |
CommandObjects.xadd(String key,
XAddParams params,
Map<String,String> hash) |
Response<StreamEntryID> |
PipeliningBase.xadd(String key,
XAddParams params,
Map<String,String> hash) |
StreamEntryID |
Jedis.xadd(String key,
XAddParams params,
Map<String,String> hash) |
StreamEntryID |
UnifiedJedis.xadd(String key,
XAddParams params,
Map<String,String> hash) |
| Modifier and Type | Method and Description |
|---|---|
default Response<byte[]> |
StreamPipelineBinaryCommands.xadd(byte[] key,
Map<byte[],byte[]> hash,
XAddParams params) |
default byte[] |
StreamBinaryCommands.xadd(byte[] key,
Map<byte[],byte[]> hash,
XAddParams params) |
Response<byte[]> |
StreamPipelineBinaryCommands.xadd(byte[] key,
XAddParams params,
Map<byte[],byte[]> hash) |
byte[] |
StreamBinaryCommands.xadd(byte[] key,
XAddParams params,
Map<byte[],byte[]> hash) |
default StreamEntryID |
StreamCommands.xadd(String key,
Map<String,String> hash,
XAddParams params)
XADD key [NOMKSTREAM] [MAXLEN|MINID [=|~] threshold [LIMIT count]] *|ID field value [field value ...]
|
default Response<StreamEntryID> |
StreamPipelineCommands.xadd(String key,
Map<String,String> hash,
XAddParams params)
XADD key [NOMKSTREAM] [MAXLEN|MINID [=|~] threshold [LIMIT count]] *|ID field value [field value ...]
|
StreamEntryID |
StreamCommands.xadd(String key,
XAddParams params,
Map<String,String> hash) |
Response<StreamEntryID> |
StreamPipelineCommands.xadd(String key,
XAddParams params,
Map<String,String> hash) |
| Modifier and Type | Method and Description |
|---|---|
XAddParams |
XAddParams.approximateTrimming() |
XAddParams |
XAddParams.exactTrimming() |
XAddParams |
XAddParams.id(byte[] id) |
XAddParams |
XAddParams.id(long time) |
XAddParams |
XAddParams.id(long time,
long sequence) |
XAddParams |
XAddParams.id(StreamEntryID id) |
XAddParams |
XAddParams.id(String id) |
XAddParams |
XAddParams.limit(long limit) |
XAddParams |
XAddParams.maxLen(long maxLen) |
XAddParams |
XAddParams.minId(String minId) |
XAddParams |
XAddParams.noMkStream() |
static XAddParams |
XAddParams.xAddParams() |
Copyright © 2024. All rights reserved.