redis.clients.jedis.graph.GraphCache 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.graph;
/**
* Store a local cache in the client, for a specific graph. Holds the labels, property names and
* relationship types.
* @deprecated Redis Graph support is deprecated.
*/
@Deprecated
interface GraphCache {
/**
* @param index - index of label
* @return requested label
*/
String getLabel(int index);
/**
* @param index index of the relationship type
* @return requested relationship type
*/
String getRelationshipType(int index);
/**
* @param index index of property name
* @return requested property
*/
String getPropertyName(int index);
}