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

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

There is a newer version: 5.2.0
Show newest version
package redis.clients.jedis.graph;

/**
 * @deprecated Redis Graph support is deprecated.
 */
@Deprecated
public interface Statistics {

  int nodesCreated();

  int nodesDeleted();

  int indicesCreated();

  int indicesDeleted();

  int labelsAdded();

  int relationshipsDeleted();

  int relationshipsCreated();

  int propertiesSet();

  boolean cachedExecution();

  String queryIntervalExecutionTime();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy