Package org.neo4j.index

Provides indexing capabilities to the Neo4j graph.

See:
          Description

Interface Summary
Index Deprecated.  
IndexHits<T> An Iterator with additional IndexHits.size() and IndexHits.close() methods on it, used for iterating over index query results.
IndexService Index service to index nodes with a key and a value.
 

Enum Summary
Isolation The isolation level of the indexing.
 

Exception Summary
ReadOnlyIndexException Thrown in a read-only index when the user tries to use for example the IndexService.index(org.neo4j.graphdb.Node, String, Object) or IndexService.removeIndex(org.neo4j.graphdb.Node, String, Object) methods.
 

Package org.neo4j.index Description

Provides indexing capabilities to the Neo4j graph. This component is a collection of various utilities for indexing parts of a Neo4j graph in different ways. The most straight-forward way is via IndexService. It is basically a service where you can index Neo4j nodes with key-value pairs. The index operations participate in Neo4j transactions, which means the indexes are covered by roll-backs etc.



Copyright © 2010 Neo4j. All Rights Reserved.