| 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<LCSMatchResult> |
PipeliningBase.lcs(byte[] keyA,
byte[] keyB,
LCSParams params) |
LCSMatchResult |
UnifiedJedis.lcs(byte[] keyA,
byte[] keyB,
LCSParams params) |
CommandObject<LCSMatchResult> |
CommandObjects.lcs(byte[] keyA,
byte[] keyB,
LCSParams params) |
LCSMatchResult |
Jedis.lcs(byte[] keyA,
byte[] keyB,
LCSParams params) |
Response<LCSMatchResult> |
PipeliningBase.lcs(java.lang.String keyA,
java.lang.String keyB,
LCSParams params) |
LCSMatchResult |
UnifiedJedis.lcs(java.lang.String keyA,
java.lang.String keyB,
LCSParams params) |
CommandObject<LCSMatchResult> |
CommandObjects.lcs(java.lang.String keyA,
java.lang.String keyB,
LCSParams params) |
LCSMatchResult |
Jedis.lcs(java.lang.String keyA,
java.lang.String keyB,
LCSParams params)
Calculate the longest common subsequence of keyA and keyB.
|
| Modifier and Type | Method and Description |
|---|---|
Response<LCSMatchResult> |
StringPipelineBinaryCommands.lcs(byte[] keyA,
byte[] keyB,
LCSParams params) |
LCSMatchResult |
StringBinaryCommands.lcs(byte[] keyA,
byte[] keyB,
LCSParams params)
Calculate the longest common subsequence of keyA and keyB.
|
LCSMatchResult |
StringCommands.lcs(java.lang.String keyA,
java.lang.String keyB,
LCSParams params)
Calculate the longest common subsequence of keyA and keyB.
|
Response<LCSMatchResult> |
StringPipelineCommands.lcs(java.lang.String keyA,
java.lang.String keyB,
LCSParams params) |
| Modifier and Type | Method and Description |
|---|---|
LCSParams |
LCSParams.idx()
When IDX is given the command returns an array with the LCS length
and all the ranges in both the strings, start and end offset for
each string, where there are matches.
|
static LCSParams |
LCSParams.LCSParams() |
LCSParams |
LCSParams.len()
When LEN is given the command returns the length of the longest common substring.
|
LCSParams |
LCSParams.minMatchLen(long minMatchLen)
Specify the minimum match length.
|
LCSParams |
LCSParams.withMatchLen()
When WITHMATCHLEN is given each array representing a match will also have the length of the match.
|
Copyright © 2025. All rights reserved.