-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
56 lines (44 loc) · 2.51 KB
/
settings.gradle
File metadata and controls
56 lines (44 loc) · 2.51 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
rootProject.name = 'java-off-heap-algorithms'
include 'common'
// Scenario 01: Circurlar Ring Buffer (renamed from Candlestick Aggregation)
include 'scenario-01-circurlar-ring-buffer:approach-01-naive'
include 'scenario-01-circurlar-ring-buffer:approach-02-optimized'
include 'scenario-01-circurlar-ring-buffer:benchmarks'
// Scenario 02: Single Producer Single Consumer (SPSC)
include 'scenario-02-single-producer-consumer:approach-01-naive'
include 'scenario-02-single-producer-consumer:approach-02-optimized'
include 'scenario-02-single-producer-consumer:benchmarks'
// Scenario 03: Multi Producer Single Consumer (MPSC)
include 'scenario-03-multi-producer-consumer:approach-01-naive'
include 'scenario-03-multi-producer-consumer:approach-02-optimized'
include 'scenario-03-multi-producer-consumer:benchmarks'
// Scenario 04: Multi-Producer Multi-Consumer (MPMC) - Work Distribution
include 'scenario-04-work-distribution:approach-01-naive'
include 'scenario-04-work-distribution:approach-02-optimized'
include 'scenario-04-work-distribution:benchmarks'
// Scenario 05: Event-Driven Pipeline (LMAX Disruptor Pattern)
include 'scenario-05-event-pipeline:approach-01-naive'
include 'scenario-05-event-pipeline:approach-02-optimized'
include 'scenario-05-event-pipeline:benchmarks'
// Scenario 06: Lossy Telemetry Buffer (Wait-Free Overwrite)
include 'scenario-06-telemetry-logging:approach-01-naive'
include 'scenario-06-telemetry-logging:approach-02-optimized'
include 'scenario-06-telemetry-logging:benchmarks'
// Scenario 07: Sharded Ring Buffer (Per-Core Processing)
include 'scenario-07-sharded-processing:approach-01-naive'
include 'scenario-07-sharded-processing:approach-02-optimized'
include 'scenario-07-sharded-processing:benchmarks'
// Scenario 08: Zero-Allocation Messaging (Free List Pool)
include 'scenario-08-zero-allocation-messaging:approach-01-naive'
include 'scenario-08-zero-allocation-messaging:approach-02-optimized'
include 'scenario-08-zero-allocation-messaging:benchmarks'
// Scenario 09: Relaxed-Order Queue (K-FIFO)
include 'scenario-09-relaxed-ordering:approach-01-naive'
include 'scenario-09-relaxed-ordering:approach-02-optimized'
include 'scenario-09-relaxed-ordering:benchmarks'
// Scenario 10: Batched Operations (SPSC with Batching)
include 'scenario-10-batch-processing:approach-01-naive'
include 'scenario-10-batch-processing:approach-02-optimized'
include 'scenario-10-batch-processing:benchmarks'
// Scenario 11: Real-World Trading Application (Integrates All Algorithms)
include 'scenario-11-trading-application'