| Package | Description |
|---|---|
| io.valkey | |
| io.valkey.commands |
This package contains the interfaces that contain methods representing Redis core commands.
|
| io.valkey.resps |
This package contains custom responses of core Redis commands.
|
| Modifier and Type | Field and Description |
|---|---|
static Builder<Map.Entry<StreamEntryID,List<StreamEntry>>> |
BuilderFactory.STREAM_AUTO_CLAIM_RESPONSE |
static Builder<StreamEntry> |
BuilderFactory.STREAM_ENTRY |
static Builder<List<StreamEntry>> |
BuilderFactory.STREAM_ENTRY_LIST |
static Builder<Map<String,List<StreamEntry>>> |
BuilderFactory.STREAM_READ_MAP_RESPONSE |
static Builder<List<Map.Entry<String,List<StreamEntry>>>> |
BuilderFactory.STREAM_READ_RESPONSE |
| Modifier and Type | Method and Description |
|---|---|
Map.Entry<StreamEntryID,List<StreamEntry>> |
StreamCommands.xautoclaim(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params)
XAUTOCLAIM key group consumer min-idle-time start [COUNT count]
|
Response<Map.Entry<StreamEntryID,List<StreamEntry>>> |
StreamPipelineCommands.xautoclaim(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params)
XAUTOCLAIM key group consumer min-idle-time start [COUNT count]
|
List<StreamEntry> |
StreamCommands.xclaim(String key,
String group,
String consumerName,
long minIdleTime,
XClaimParams params,
StreamEntryID... ids)
{@code XCLAIM key group consumer min-idle-time
|
Response<List<StreamEntry>> |
StreamPipelineCommands.xclaim(String key,
String group,
String consumerName,
long minIdleTime,
XClaimParams params,
StreamEntryID... ids)
{@code XCLAIM key group consumer min-idle-time
|
List<StreamEntry> |
StreamCommands.xrange(String key,
StreamEntryID start,
StreamEntryID end)
XRANGE key start end
|
Response<List<StreamEntry>> |
StreamPipelineCommands.xrange(String key,
StreamEntryID start,
StreamEntryID end)
XRANGE key start end
|
List<StreamEntry> |
StreamCommands.xrange(String key,
StreamEntryID start,
StreamEntryID end,
int count)
XRANGE key start end COUNT count
|
Response<List<StreamEntry>> |
StreamPipelineCommands.xrange(String key,
StreamEntryID start,
StreamEntryID end,
int count)
XRANGE key start end COUNT count
|
List<StreamEntry> |
StreamCommands.xrange(String key,
String start,
String end) |
Response<List<StreamEntry>> |
StreamPipelineCommands.xrange(String key,
String start,
String end) |
List<StreamEntry> |
StreamCommands.xrange(String key,
String start,
String end,
int count) |
Response<List<StreamEntry>> |
StreamPipelineCommands.xrange(String key,
String start,
String end,
int count) |
List<Map.Entry<String,List<StreamEntry>>> |
StreamCommands.xread(XReadParams xReadParams,
Map<String,StreamEntryID> streams)
XREAD [COUNT count] [BLOCK milliseconds] STREAMS key [key ...] ID [ID ...]
|
Response<List<Map.Entry<String,List<StreamEntry>>>> |
StreamPipelineCommands.xread(XReadParams xReadParams,
Map<String,StreamEntryID> streams)
XREAD [COUNT count] [BLOCK milliseconds] STREAMS key [key ...] ID [ID ...]
|
Map<String,List<StreamEntry>> |
StreamCommands.xreadAsMap(XReadParams xReadParams,
Map<String,StreamEntryID> streams)
XREAD [COUNT count] [BLOCK milliseconds] STREAMS key [key ...] ID [ID ...]
|
Response<Map<String,List<StreamEntry>>> |
StreamPipelineCommands.xreadAsMap(XReadParams xReadParams,
Map<String,StreamEntryID> streams)
XREAD [COUNT count] [BLOCK milliseconds] STREAMS key [key ...] ID [ID ...]
|
List<Map.Entry<String,List<StreamEntry>>> |
StreamCommands.xreadGroup(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams)
XREADGROUP GROUP group consumer [COUNT count] [BLOCK milliseconds] [NOACK] STREAMS key [key ...] id [id ...]
|
Response<List<Map.Entry<String,List<StreamEntry>>>> |
StreamPipelineCommands.xreadGroup(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams)
XREADGROUP GROUP group consumer [COUNT count] [BLOCK milliseconds] [NOACK] STREAMS key [key ...] id [id ...]
|
Map<String,List<StreamEntry>> |
StreamCommands.xreadGroupAsMap(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams)
XREADGROUP GROUP group consumer [COUNT count] [BLOCK milliseconds] [NOACK] STREAMS key [key ...] id [id ...]
|
Response<Map<String,List<StreamEntry>>> |
StreamPipelineCommands.xreadGroupAsMap(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams)
XREADGROUP GROUP group consumer [COUNT count] [BLOCK milliseconds] [NOACK] STREAMS key [key ...] id [id ...]
|
List<StreamEntry> |
StreamCommands.xrevrange(String key,
StreamEntryID end,
StreamEntryID start)
XREVRANGE key end start
|
Response<List<StreamEntry>> |
StreamPipelineCommands.xrevrange(String key,
StreamEntryID end,
StreamEntryID start)
XREVRANGE key end start
|
List<StreamEntry> |
StreamCommands.xrevrange(String key,
StreamEntryID end,
StreamEntryID start,
int count)
XREVRANGE key end start COUNT count
|
Response<List<StreamEntry>> |
StreamPipelineCommands.xrevrange(String key,
StreamEntryID end,
StreamEntryID start,
int count)
XREVRANGE key end start COUNT count
|
List<StreamEntry> |
StreamCommands.xrevrange(String key,
String end,
String start) |
Response<List<StreamEntry>> |
StreamPipelineCommands.xrevrange(String key,
String end,
String start) |
List<StreamEntry> |
StreamCommands.xrevrange(String key,
String end,
String start,
int count) |
Response<List<StreamEntry>> |
StreamPipelineCommands.xrevrange(String key,
String end,
String start,
int count) |
| Modifier and Type | Method and Description |
|---|---|
StreamEntry |
StreamInfo.getFirstEntry() |
StreamEntry |
StreamInfo.getLastEntry() |
| Modifier and Type | Method and Description |
|---|---|
List<StreamEntry> |
StreamFullInfo.getEntries() |
Copyright © 2024. All rights reserved.