Uses of Class
redis.clients.jedis.params.StrAlgoLCSParams
Packages that use StrAlgoLCSParams
Package
Description
This package contains the interfaces that contain methods representing Redis core commands.
This package contains the classes that represent optional parameters of core Redis commands.
-
Uses of StrAlgoLCSParams in redis.clients.jedis
Methods in redis.clients.jedis with parameters of type StrAlgoLCSParamsModifier and TypeMethodDescriptionfinal CommandObject<LCSMatchResult> CommandObjects.strAlgoLCSKeys(byte[] keyA, byte[] keyB, StrAlgoLCSParams params) Deprecated.STRALGO LCS command will be removed from Redis 7.final CommandObject<LCSMatchResult> CommandObjects.strAlgoLCSKeys(String keyA, String keyB, StrAlgoLCSParams params) Deprecated.STRALGO LCS command will be removed from Redis 7.Jedis.strAlgoLCSKeys(byte[] keyA, byte[] keyB, StrAlgoLCSParams params) Deprecated.STRALGO LCS command will be removed from Redis 7.Jedis.strAlgoLCSKeys(String keyA, String keyB, StrAlgoLCSParams params) Deprecated.STRALGO LCS command will be removed from Redis 7.MultiNodePipelineBase.strAlgoLCSKeys(byte[] keyA, byte[] keyB, StrAlgoLCSParams params) MultiNodePipelineBase.strAlgoLCSKeys(String keyA, String keyB, StrAlgoLCSParams params) Pipeline.strAlgoLCSKeys(byte[] keyA, byte[] keyB, StrAlgoLCSParams params) Pipeline.strAlgoLCSKeys(String keyA, String keyB, StrAlgoLCSParams params) TransactionBase.strAlgoLCSKeys(byte[] keyA, byte[] keyB, StrAlgoLCSParams params) TransactionBase.strAlgoLCSKeys(String keyA, String keyB, StrAlgoLCSParams params) UnifiedJedis.strAlgoLCSKeys(byte[] keyA, byte[] keyB, StrAlgoLCSParams params) UnifiedJedis.strAlgoLCSKeys(String keyA, String keyB, StrAlgoLCSParams params) final CommandObject<LCSMatchResult> CommandObjects.strAlgoLCSStrings(byte[] strA, byte[] strB, StrAlgoLCSParams params) Deprecated.final CommandObject<LCSMatchResult> CommandObjects.strAlgoLCSStrings(String strA, String strB, StrAlgoLCSParams params) Deprecated.Jedis.strAlgoLCSStrings(byte[] strA, byte[] strB, StrAlgoLCSParams params) Deprecated.STRALGO LCS command will be removed from Redis 7.Jedis.strAlgoLCSStrings(String strA, String strB, StrAlgoLCSParams params) Deprecated.STRALGO LCS command will be removed from Redis 7.MultiNodePipelineBase.strAlgoLCSStrings(byte[] strA, byte[] strB, StrAlgoLCSParams params) MultiNodePipelineBase.strAlgoLCSStrings(String strA, String strB, StrAlgoLCSParams params) Pipeline.strAlgoLCSStrings(byte[] strA, byte[] strB, StrAlgoLCSParams params) Pipeline.strAlgoLCSStrings(String strA, String strB, StrAlgoLCSParams params) TransactionBase.strAlgoLCSStrings(byte[] strA, byte[] strB, StrAlgoLCSParams params) TransactionBase.strAlgoLCSStrings(String strA, String strB, StrAlgoLCSParams params) UnifiedJedis.strAlgoLCSStrings(byte[] strA, byte[] strB, StrAlgoLCSParams params) UnifiedJedis.strAlgoLCSStrings(String strA, String strB, StrAlgoLCSParams params) -
Uses of StrAlgoLCSParams in redis.clients.jedis.commands
Methods in redis.clients.jedis.commands with parameters of type StrAlgoLCSParamsModifier and TypeMethodDescriptionStringBinaryCommands.strAlgoLCSKeys(byte[] keyA, byte[] keyB, StrAlgoLCSParams params) Deprecated.STRALGO LCS command will be removed from Redis 7.StringCommands.strAlgoLCSKeys(String keyA, String keyB, StrAlgoLCSParams params) Deprecated.STRALGO LCS command will be removed from Redis 7.StringPipelineBinaryCommands.strAlgoLCSKeys(byte[] keyA, byte[] keyB, StrAlgoLCSParams params) Deprecated.STRALGO LCS command will be removed from Redis 7.StringPipelineCommands.strAlgoLCSKeys(String keyA, String keyB, StrAlgoLCSParams params) Deprecated.STRALGO LCS command will be removed from Redis 7. -
Uses of StrAlgoLCSParams in redis.clients.jedis.params
Methods in redis.clients.jedis.params that return StrAlgoLCSParamsModifier and TypeMethodDescriptionStrAlgoLCSParams.idx()Deprecated.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.StrAlgoLCSParams.len()Deprecated.When LEN is given the command returns the length of the longest common substring.StrAlgoLCSParams.minMatchLen(long minMatchLen) Deprecated.Specify the minimum match length.static StrAlgoLCSParamsStrAlgoLCSParams.StrAlgoLCSParams()Deprecated.StrAlgoLCSParams.withMatchLen()Deprecated.When WITHMATCHLEN is given each array representing a match will also have the length of the match.