-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathREADME.txt
30 lines (22 loc) · 1.26 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Replication Benchmarker
=======
https://github.com/score-team/replication-benchmarker/
Copyright (C) 2012 Université de Lorraine / LORIA / Inria / SCORE Team
ReplicationBenchmarker is a performance evaluation framework for replication mechanisms
used in collaborative applications.
=======
The main class for evaluation is crdt.simulator.CausalSimulator
* You create a Simulator associated to a replica factory (crdt.Factory) that creates CRDT (crdt.CRDT) instances. There are factories for
- Treedoc : jbenchmarker.factories.TreedocFactory
- Logoot : several versions, best one is jbenchmarker.factories.LogootListFactory.ByteList
- WOOT : several versions, best one is jbenchmarker.factories.WootFactories.WootHFactory
- others : sequences, sets, unordered and ordered tree, ... see jbenchmarker.factories....
- your(s)
* You run it on a trace (a list of operations) that can be
- extracted from a XML file jbenchmarker.trace.TraceGenerator
- generated randomly crdt.simulator.random.RandomTrace
- extracted from git repository jbenchmarker.trace.git.GitTrace
To use git extraction you a need a CouchDB instance accessible.
* You get the result with Simulator methods :
- details : getMemUsed(), replicaGenerationTimes(), getRemoteTimes()
- sum and average : getSumXXX getAvgXXX