Package org.axonframework.integrationtests.eventstore.benchmark

Examples of org.axonframework.integrationtests.eventstore.benchmark.AbstractEventStoreBenchmark


public class RedisEventStoreBenchmark extends AbstractEventStoreBenchmark {

    private RedisEventStore redisEventStore;

    public static void main(String[] args) throws Exception {
        AbstractEventStoreBenchmark benchmark = new RedisEventStoreBenchmark();
        benchmark.startBenchMark();
    }
View Full Code Here


    private static final IdentifierFactory IDENTIFIER_FACTORY = IdentifierFactory.getInstance();

    private CassandraEventStore eventStore;

    public static void main(String[] args) throws InterruptedException {
        AbstractEventStoreBenchmark benchmark = new CassandraEventStoreBenchmark();
        benchmark.startBenchMark();
        System.exit(0);
    }
View Full Code Here

    public FileSystemEventStoreBenchMark(FileSystemEventStore fileSystemEventStore) {
        this.fileSystemEventStore = fileSystemEventStore;
    }

    public static void main(String[] args) throws Exception {
        AbstractEventStoreBenchmark benchmark = prepareBenchMark("META-INF/spring/benchmark-filesystem-context.xml");
        benchmark.startBenchMark();
    }
View Full Code Here

    private MongoEventStore mongoEventStore;

    private Mongo mongoDb;

    public static void main(String[] args) throws Exception {
        AbstractEventStoreBenchmark benchmark = prepareBenchMark("META-INF/spring/benchmark-mongo-context.xml");
        benchmark.startBenchMark();
    }
View Full Code Here

    @PersistenceContext
    private EntityManager entityManager;

    public static void main(String[] args) throws Exception {
        AbstractEventStoreBenchmark benchmark = prepareBenchMark("META-INF/spring/benchmark-jpa-context.xml");
        benchmark.startBenchMark();
    }
View Full Code Here

TOP

Related Classes of org.axonframework.integrationtests.eventstore.benchmark.AbstractEventStoreBenchmark

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.