redis.clients.jedis.json.commands.RedisJsonV2PipelineCommands Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis_preview Show documentation
Show all versions of jedis_preview Show documentation
Jedis is a blazingly small and sane Redis java client.
The newest version!
package redis.clients.jedis.json.commands;
import java.util.List;
import org.json.JSONArray;
import redis.clients.jedis.Response;
import redis.clients.jedis.json.JsonSetParams;
import redis.clients.jedis.json.Path2;
public interface RedisJsonV2PipelineCommands {
default Response jsonSet(String key, Object object) {
return jsonSet(key, Path2.ROOT_PATH, object);
}
default Response jsonSetWithEscape(String key, Object object) {
return jsonSetWithEscape(key, Path2.ROOT_PATH, object);
}
default Response jsonSet(String key, Object object, JsonSetParams params) {
return jsonSet(key, Path2.ROOT_PATH, object, params);
}
default Response jsonSetWithEscape(String key, Object object, JsonSetParams params) {
return jsonSetWithEscape(key, Path2.ROOT_PATH, object, params);
}
Response jsonSet(String key, Path2 path, Object object);
Response jsonSetWithEscape(String key, Path2 path, Object object);
Response jsonSet(String key, Path2 path, Object object, JsonSetParams params);
Response jsonSetWithEscape(String key, Path2 path, Object object, JsonSetParams params);
Response jsonMerge(String key, Path2 path, Object object);
Response