All Downloads are FREE. Search and download functionalities are using the official Maven repository.

redis.clients.jedis.graph.RedisGraphPipelineCommands Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
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