Uses of Class
redis.clients.jedis.params.LCSParams
Packages that use LCSParams
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 LCSParams in redis.clients.jedis
Methods in redis.clients.jedis with parameters of type LCSParamsModifier and TypeMethodDescriptionfinal CommandObject<LCSMatchResult> final CommandObject<LCSMatchResult> Calculate the longest common subsequence of keyA and keyB. -
Uses of LCSParams in redis.clients.jedis.commands
Methods in redis.clients.jedis.commands with parameters of type LCSParamsModifier and TypeMethodDescriptionCalculate the longest common subsequence of keyA and keyB.Calculate the longest common subsequence of keyA and keyB. -
Uses of LCSParams in redis.clients.jedis.params
Methods in redis.clients.jedis.params that return LCSParamsModifier and TypeMethodDescriptionLCSParams.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 LCSParamsLCSParams.LCSParams()LCSParams.len()When LEN is given the command returns the length of the longest common substring.LCSParams.minMatchLen(long minMatchLen) Specify the minimum match length.LCSParams.withMatchLen()When WITHMATCHLEN is given each array representing a match will also have the length of the match.