com.redis.spring.batch.writer.operation.Lpush Maven / Gradle / Ivy
package com.redis.spring.batch.writer.operation;
import io.lettuce.core.RedisFuture;
import io.lettuce.core.api.async.RedisListAsyncCommands;
public class Lpush extends AbstractPushOperation {
@SuppressWarnings("unchecked")
@Override
protected RedisFuture doPush(RedisListAsyncCommands commands, K key, V value) {
return commands.lpush(key, value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy