V - Value type.public class SpellCheckResultParser<K,V> extends Object implements ComplexDataParser<SpellCheckResult<V>>
This parser converts the response from the Redis FT.SPELLCHECK command into a SpellCheckResult object. The
FT.SPELLCHECK command returns an array where each element represents a misspelled term from the query. Each misspelled term
is a 3-element array consisting of:
| Constructor and Description |
|---|
SpellCheckResultParser(RedisCodec<K,V> codec) |
| Modifier and Type | Method and Description |
|---|---|
SpellCheckResult<V> |
parse(ComplexData data)
Parse the data extracted from the server to a specific domain object.
|
public SpellCheckResultParser(RedisCodec<K,V> codec)
public SpellCheckResult<V> parse(ComplexData data)
ComplexDataParserparse in interface ComplexDataParser<SpellCheckResult<V>>data - the data to parseCopyright © 2025 lettuce.io. All rights reserved.