Uses of Class
de.uni.leipzig.IR15.Benchmark.neo4j.Neo4jBenchmark

Packages that use Neo4jBenchmark
de.uni.leipzig.IR15.Benchmark.neo4j   
 

Uses of Neo4jBenchmark in de.uni.leipzig.IR15.Benchmark.neo4j
 

Subclasses of Neo4jBenchmark in de.uni.leipzig.IR15.Benchmark.neo4j
 class CypherBenchmark
          Abstract Base Class for all Cypher-based benchmarks.
 class Query1_Cypher_Benchmark
          Query 1 selects the wordID of all the sentence co-occurrences of a given word.
 class Query1_Native_Benchmark
          Query 1 selects the wordID of all the sentence co-occurrences of a given word.
 class Query1_Traverser_Benchmark
          Query 1 Traverser collects all nodes which are directly connected to the start node via an outgoing CO_S relationship.
 class Query2_Cypher_Benchmark
          Query 2 selects the wordID of all sentence co-occurrences of co-occurrences of a given word.
 class Query2_Native_Benchmark
          Query 2 selects the wordID of all sentence co-occurrences of co-occurrences of a given word.
 class Query2_Traverser_Benchmark
          Query 2 Traverser collects all nodes with are 2 hops away from the start node and connected via outgoing CO_S relationships between start and end node.
 class Query3_Cypher_Benchmark
          Query 3 selects all sentence co-occurrences of a given word which are co-occurences of themselves.
 class Query3_Native_Benchmark
          Traverser collects all paths starting at A which have the following pattern A-[CO_S]->B-[CO_S]->C<-[CO_S]-A.
 class Query3_Traverser_Benchmark
          Traverser collects all paths starting at A which have the following pattern A-[CO_S]->B-[CO_S]->C<-[CO_S]-A.
 class TraverserBenchmark
          Abstract Base Class for all Cypher-based benchmarks.