-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmakefile
More file actions
40 lines (32 loc) · 1.5 KB
/
makefile
File metadata and controls
40 lines (32 loc) · 1.5 KB
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
31
32
33
34
35
36
37
38
39
40
benchmark-expression-evaluation:
cd result && make dependencies && make build
cd expression-evaluation && make dependencies && make benchmark && make generate-graph
benchmark-in-memory-cache:
cd result && make dependencies && make build
cd in-memory-cache && make dependencies && make benchmark && make generate-graph
benchmark-json:
cd result && make dependencies && make build
cd json && make dependencies && make benchmark && make generate-graph
benchmark-kafka-producer:
cd result && make dependencies && make build
cd kafka-client && make dependencies && make benchmark-producer
benchmark-kafka-consumer:
cd result && make dependencies && make build
cd kafka-client && make dependencies && make benchmark-consumer
benchmark-sql-builder:
cd result && make dependencies && make build
cd sql-builder && make dependencies && make benchmark && make generate-graph
benchmark-synchronization-techniques:
cd result && make dependencies && make build
cd synchronization-techniques && make dependencies && make benchmark && make generate-graph
benchmark-worker-pool:
cd result && make dependencies && make build
cd worker-pool && make dependencies && make benchmark && make generate-graph
generate-benchmark-graph:
cd result && make dependencies && make build
cd expression-evaluation && make generate-graph
cd in-memory-cache && make generate-graph
cd json && make generate-graph
cd sql-builder && make generate-graph
cd synchronization-techniques && make generate-graph
cd worker-pool && make generate-graph