Comment on redis_lookup function: do not use

This commit is contained in:
yo000 2024-02-04 11:33:07 +01:00
parent 2cf5dff011
commit 8febd14eb6

View File

@ -76,7 +76,7 @@ public class RedisLookupPluginFunction extends LookupTableFunction<GenericLookup
public FunctionDescriptor<GenericLookupResult> descriptor() { public FunctionDescriptor<GenericLookupResult> descriptor() {
return FunctionDescriptor.<GenericLookupResult>builder() return FunctionDescriptor.<GenericLookupResult>builder()
.name(NAME) .name(NAME)
.description("Match a key into Redis instance and return value") .description("Match a key into Redis instance and return value. Do not use, prefer standard 'lookup_*' functions")
.params(keyParam) .params(keyParam)
.returnType(GenericLookupResult.class) .returnType(GenericLookupResult.class)
.build(); .build();