redis.clients.jedis.graph.RedisGraphPipelineCommands Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis Show documentation
Show all versions of jedis Show documentation
Jedis is a blazingly small and sane Redis java client.
package redis.clients.jedis.graph;
import java.util.List;
import java.util.Map;
import redis.clients.jedis.Response;
public interface RedisGraphPipelineCommands {
Response graphQuery(String name, String query);
Response graphReadonlyQuery(String name, String query);
Response graphQuery(String name, String query, long timeout);
Response graphReadonlyQuery(String name, String query, long timeout);
Response graphQuery(String name, String query, Map params);
Response graphReadonlyQuery(String name, String query, Map params);
Response graphQuery(String name, String query, Map params, long timeout);
Response graphReadonlyQuery(String name, String query, Map params, long timeout);
Response graphDelete(String name);
Response> graphProfile(String graphName, String query);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy