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

Packages that use Benchmark
de.uni.leipzig.IR15.Benchmark   
de.uni.leipzig.IR15.Benchmark.dex   
de.uni.leipzig.IR15.Benchmark.mysql   
de.uni.leipzig.IR15.Benchmark.neo4j   
de.uni.leipzig.IR15.Benchmark.orientdb   
de.uni.leipzig.IR15.Benchmark.suites   
 

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

Subclasses of Benchmark in de.uni.leipzig.IR15.Benchmark
 class ImportBenchmark
           
 

Uses of Benchmark in de.uni.leipzig.IR15.Benchmark.dex
 

Subclasses of Benchmark in de.uni.leipzig.IR15.Benchmark.dex
 class DEXBenchmark
          Abstract Base Class for all benchmarks running on DEX graph database.
 class Query1_Benchmark
          Query 1 selects all sentence co-occurrences (co_s) of a given word.
 class Query2_Benchmark
          Query 2 selects all sentence co-occurrences of sentence co-occurrences (co_s) of a given word.
 class Query3_Benchmark
          Query 3 selects all sentence co-occurences (co_s) between two words which are sentence co-occurences of a given word.
 

Uses of Benchmark in de.uni.leipzig.IR15.Benchmark.mysql
 

Subclasses of Benchmark in de.uni.leipzig.IR15.Benchmark.mysql
 class MySQLBenchmark
          Abstract Base Class for all benchmarks running on sql database.
 

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

Subclasses of Benchmark in de.uni.leipzig.IR15.Benchmark.neo4j
 class CypherBenchmark
          Abstract Base Class for all Cypher-based benchmarks.
 class Neo4jBenchmark
          Abstract Base Class for all benchmarks running on neo4j graph database.
 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.
 

Uses of Benchmark in de.uni.leipzig.IR15.Benchmark.orientdb
 

Subclasses of Benchmark in de.uni.leipzig.IR15.Benchmark.orientdb
 class OrientDBBenchmark
          Abstract Base Class for all benchmarks running on orient graph database.
 class Query1_LowL_Benchmark
          Query 1 selects all sentence co-occurrences (co_s) of a given word.
 class Query2_LowL_Benchmark
          Query 2 selects all sentence co-occurrences of sentence co-occurrences (co_s) of a given word.
 class Query3_LowL_Benchmark
          Query 3 selects all sentence co-occurrences of a given word which are co-occurences of themselves.
 

Uses of Benchmark in de.uni.leipzig.IR15.Benchmark.suites
 

Methods in de.uni.leipzig.IR15.Benchmark.suites with parameters of type Benchmark
static void AbstractBenchmarkSuite.runBenchmark(Benchmark benchmark, boolean log2file, boolean doWarmup)
          Run a benchmark.
 

Method parameters in de.uni.leipzig.IR15.Benchmark.suites with type arguments of type Benchmark
static void AbstractBenchmarkSuite.runBenchmarks(java.util.List<Benchmark> benchmarks)
          Run all benchmarks.
static void AbstractBenchmarkSuite.runBenchmarks(java.util.List<Benchmark> benchmarks, boolean log2file, boolean doWarmup)
          Run all benchmarks.