lora-database 0.5.6

LoraDB — embeddable in-memory graph database with Cypher query support.
Documentation
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
//! Comprehensive benchmarks for the Lora engine.
//!
//! Run with: `cargo bench -p lora-server`
//!
//! Categories:
//!   1. match_queries — basic MATCH, WHERE, RETURN
//!   2. traversal — single-hop, multi-hop, variable-length
//!   3. filtering — property predicates, boolean logic, parameters
//!   4. aggregation — count, sum, collect, grouping
//!   5. ordering — ORDER BY, DISTINCT, SKIP/LIMIT
//!   6. write_operations — CREATE, MERGE, SET, DELETE
//!   7. functions — string, math, type functions
//!   8. realistic — social, org, dependency workloads

mod fixtures;

use criterion::{criterion_group, criterion_main, BatchSize, BenchmarkId, Criterion, Throughput};
use fixtures::*;
use lora_database::{ExecuteOptions, ResultFormat};
use std::collections::BTreeMap;
use std::hint::black_box;
use std::time::Duration;

/// Shared execute options (Rows format, the cheapest output path).
fn opts() -> Option<ExecuteOptions> {
    Some(ExecuteOptions {
        format: ResultFormat::Rows,
    })
}

/// Criterion defaults (3s warmup + 5s measurement × 100 samples) produced an
/// ~8s minimum per benchmark. For this engine that was an order of magnitude
/// more than needed: most queries stabilise in well under 1s of measurement.
/// This config keeps enough samples for stable timing but trims the per-bench
/// budget to ~2.5s.
fn bench_config() -> Criterion {
    Criterion::default()
        .warm_up_time(Duration::from_millis(500))
        .measurement_time(Duration::from_millis(2_000))
        .sample_size(50)
}

// ===================================================================
// 1. MATCH — basic query execution
// ===================================================================

fn bench_match_queries(c: &mut Criterion) {
    let mut group = c.benchmark_group("match");

    // Throughput unit for this group: *nodes scanned per query*. That makes
    // the `thrpt:` line read as "nodes processed per second", which is the
    // most comparable figure across scan benchmarks.

    // Build each size once, reuse across both parametric benchmarks.
    let dbs: Vec<(usize, BenchDb)> = [Scale::TINY, Scale::SMALL, Scale::MEDIUM]
        .iter()
        .map(|&s| (s, build_node_graph(s)))
        .collect();

    // --- match_all_nodes at different scales ---
    for (size, db) in &dbs {
        group.throughput(Throughput::Elements(*size as u64));
        group.bench_with_input(BenchmarkId::new("all_nodes", size), size, |b, _| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute("MATCH (n:Node) RETURN n.id", opts())
                        .unwrap(),
                );
            });
        });
    }

    // --- match with property equality filter ---
    for (size, db) in &dbs {
        group.throughput(Throughput::Elements(*size as u64));
        group.bench_with_input(
            BenchmarkId::new("property_eq_filter", size),
            size,
            |b, _| {
                b.iter(|| {
                    black_box(
                        db.service
                            .execute("MATCH (n:Node) WHERE n.value = 42 RETURN n.id", opts())
                            .unwrap(),
                    );
                });
            },
        );
    }

    // The remaining 1k benches all share the SMALL fixture — each query
    // scans SMALL nodes per iteration.
    let db_small = dbs
        .iter()
        .find(|(s, _)| *s == Scale::SMALL)
        .map(|(_, d)| d)
        .unwrap();

    group.throughput(Throughput::Elements(Scale::SMALL as u64));

    group.bench_function("range_filter_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute(
                        "MATCH (n:Node) WHERE n.value >= 20 AND n.value < 40 RETURN n.id",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.bench_function("starts_with_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute(
                        "MATCH (n:Node) WHERE n.name STARTS WITH 'node_5' RETURN n.id",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.bench_function("return_property_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute("MATCH (n:Node) RETURN n.name", opts())
                    .unwrap(),
            );
        });
    });

    group.bench_function("count_only_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute("MATCH (n:Node) RETURN count(n) AS c", opts())
                    .unwrap(),
            );
        });
    });

    group.finish();
}

// ===================================================================
// 2. TRAVERSAL — single-hop, multi-hop, variable-length
// ===================================================================

fn bench_traversal(c: &mut Criterion) {
    let mut group = c.benchmark_group("traversal");

    // Throughput unit for this group: *edges visited per query*. For simple
    // pattern matches this is the number of (a)-[r]->(b) pairs produced; for
    // variable-length expansion it is the number of hops the BFS performs.

    // One chain per size, reused by single_hop / varlen_1_5 / varlen_unbounded.
    let chains: Vec<(usize, BenchDb)> = [100usize, 500, 1000]
        .iter()
        .map(|&s| (s, build_chain(s)))
        .collect();

    // --- single hop on chain ---
    // Chain of N nodes has N-1 NEXT edges; the query emits N-1 rows.
    for (size, db) in &chains {
        group.throughput(Throughput::Elements((*size - 1) as u64));
        group.bench_with_input(BenchmarkId::new("single_hop_chain", size), size, |b, _| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (a:Chain)-[:NEXT]->(b:Chain) RETURN a.idx, b.idx",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });
    }

    // --- multi-hop fixed chain (3 hops) ---
    // One row emitted per query (single anchored 3-hop walk).
    let chain_500 = chains
        .iter()
        .find(|(s, _)| *s == 500)
        .map(|(_, d)| d)
        .unwrap();
    group.throughput(Throughput::Elements(1));
    group.bench_function("three_hop_chain_500", |b| {
        b.iter(|| {
            black_box(
                chain_500
                    .service
                    .execute(
                        "MATCH (a:Chain {idx:0})-[:NEXT]->(b)-[:NEXT]->(c)-[:NEXT]->(d) RETURN d.idx",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    // --- variable-length path (bounded) on chain ---
    // NEXT*1..5 from idx=0 expands to up to 5 distinct destinations.
    for (size, db) in &chains {
        let hops = 5usize.min(size.saturating_sub(1));
        group.throughput(Throughput::Elements(hops as u64));
        group.bench_with_input(BenchmarkId::new("varlen_1_5_chain", size), size, |b, _| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (a:Chain {idx:0})-[:NEXT*1..5]->(b) RETURN b.idx",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });
    }

    // --- variable-length unbounded on chain (tests termination) ---
    // The engine caps hops at MAX_VAR_LEN_HOPS (100); effective hops =
    // min(size - 1, 100).
    for (size, db) in chains.iter().filter(|(s, _)| *s <= 500) {
        let hops = 100usize.min(size.saturating_sub(1));
        group.throughput(Throughput::Elements(hops as u64));
        group.bench_with_input(
            BenchmarkId::new("varlen_unbounded_chain", size),
            size,
            |b, _| {
                b.iter(|| {
                    black_box(
                        db.service
                            .execute(
                                "MATCH (a:Chain {idx:0})-[:NEXT*]->(b) RETURN count(b) AS cnt",
                                opts(),
                            )
                            .unwrap(),
                    );
                });
            },
        );
    }

    // --- star fan-out traversal ---
    // A hub with `size` leaves produces `size` rows.
    for &size in &[100usize, 500, 1000] {
        let db = build_star(size);
        group.throughput(Throughput::Elements(size as u64));
        group.bench_with_input(BenchmarkId::new("star_fan_out", size), &size, |b, _| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute("MATCH (:Hub)-[:ARM]->(l:Leaf) RETURN l.id", opts())
                        .unwrap(),
                );
            });
        });
    }

    // --- cycle traversal (tests relationship dedup) ---
    // Bounded LOOP*1..10 expands to min(10, size-1) distinct destinations.
    for &size in &[50usize, 100, 500] {
        let db = build_cycle(size);
        let hops = 10.min(size.saturating_sub(1));
        group.throughput(Throughput::Elements(hops as u64));
        group.bench_with_input(
            BenchmarkId::new("cycle_varlen_bounded", size),
            &size,
            |b, _| {
                b.iter(|| {
                    black_box(
                        db.service
                            .execute(
                                "MATCH (a:Ring {idx:0})-[:LOOP*1..10]->(b) RETURN count(b) AS cnt",
                                opts(),
                            )
                            .unwrap(),
                    );
                });
            },
        );
    }

    // --- tree traversal (branching factor) ---
    {
        // depth=4, branch=3 → 3 + 9 + 27 + 81 = 120 leaves visited
        let db = build_tree(4, 3);
        group.throughput(Throughput::Elements(120));
        group.bench_function("tree_depth4_branch3_traverse", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (root:Tree {id:0})-[:CHILD*1..4]->(leaf) RETURN count(leaf) AS cnt",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });
    }
    {
        // depth=3, branch=5 → 5 + 25 + 125 = 155 descendants visited
        let db = build_tree(3, 5);
        group.throughput(Throughput::Elements(155));
        group.bench_function("tree_depth3_branch5_traverse", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (root:Tree {id:0})-[:CHILD*1..3]->(leaf) RETURN count(leaf) AS cnt",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });
    }

    // --- social graph: 2-hop traversal ---
    {
        // 500 Person nodes with ~4-way fan out → on the order of 16 distinct
        // 2-hop destinations per starting node. Report 1 query per iteration
        // since the final DISTINCT prevents a clean work-per-row count.
        let db = build_social_graph(500, 4);
        group.throughput(Throughput::Elements(1));
        group.bench_function("social_2hop_500_nodes", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (a:Person {id:0})-[:KNOWS]->(b)-[:KNOWS]->(c) \
                             RETURN DISTINCT c.id",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });
    }

    group.finish();
}

// ===================================================================
// 3. FILTERING — property predicates, boolean logic, parameters
// ===================================================================

fn bench_filtering(c: &mut Criterion) {
    let mut group = c.benchmark_group("filtering");

    let db_1k = build_node_graph(Scale::SMALL);

    // Throughput unit: *nodes scanned per query*. All 1k benches scan the
    // SMALL (1000 node) fixture, so ops/sec is reported as "nodes filtered
    // per second".
    group.throughput(Throughput::Elements(Scale::SMALL as u64));

    // --- boolean AND ---
    group.bench_function("bool_and_1k", |b| {
        b.iter(|| {
            black_box(
                db_1k
                    .service
                    .execute(
                        "MATCH (n:Node) WHERE n.value > 20 AND n.value < 60 RETURN n.id",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    // --- boolean OR ---
    group.bench_function("bool_or_1k", |b| {
        b.iter(|| {
            black_box(
                db_1k
                    .service
                    .execute(
                        "MATCH (n:Node) WHERE n.value = 10 OR n.value = 50 OR n.value = 90 RETURN n.id",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    // --- NOT predicate ---
    group.bench_function("bool_not_1k", |b| {
        b.iter(|| {
            black_box(
                db_1k
                    .service
                    .execute("MATCH (n:Node) WHERE NOT n.value > 50 RETURN n.id", opts())
                    .unwrap(),
            );
        });
    });

    // --- IN list ---
    group.bench_function("in_list_1k", |b| {
        b.iter(|| {
            black_box(
                db_1k
                    .service
                    .execute(
                        "MATCH (n:Node) WHERE n.value IN [10, 20, 30, 40, 50] RETURN n.id",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    // --- parameterized query ---
    group.bench_function("parameterized_eq_1k", |b| {
        let mut params = BTreeMap::new();
        params.insert("val".to_string(), lora_database::LoraValue::Int(42));
        b.iter(|| {
            black_box(
                db_1k
                    .service
                    .execute_with_params(
                        "MATCH (n:Node) WHERE n.value = $val RETURN n.id",
                        opts(),
                        params.clone(),
                    )
                    .unwrap(),
            );
        });
    });

    // --- complex compound predicate ---
    group.bench_function("compound_predicate_1k", |b| {
        b.iter(|| {
            black_box(
                db_1k
                    .service
                    .execute(
                        "MATCH (n:Node) WHERE (n.value > 30 AND n.value < 70) OR n.id < 10 RETURN n.id",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    // --- high-selectivity filter (few results) ---
    group.bench_function("high_selectivity_1k", |b| {
        b.iter(|| {
            black_box(
                db_1k
                    .service
                    .execute("MATCH (n:Node) WHERE n.id = 500 RETURN n", opts())
                    .unwrap(),
            );
        });
    });

    // --- low-selectivity filter (many results) ---
    group.bench_function("low_selectivity_1k", |b| {
        b.iter(|| {
            black_box(
                db_1k
                    .service
                    .execute("MATCH (n:Node) WHERE n.value >= 0 RETURN n.id", opts())
                    .unwrap(),
            );
        });
    });

    // --- relationship property filter ---
    // Social graph of 200 Person nodes with fan-out 3 → ~600 KNOWS edges
    // scanned per query.
    {
        let db = build_social_graph(200, 3);
        group.throughput(Throughput::Elements(600));
        group.bench_function("rel_property_filter_200", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (a:Person)-[k:KNOWS]->(b:Person) WHERE k.strength > 5 RETURN a.id, b.id",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });
    }

    group.finish();
}

// ===================================================================
// 4. AGGREGATION — count, sum, collect, grouping
// ===================================================================

fn bench_aggregation(c: &mut Criterion) {
    let mut group = c.benchmark_group("aggregation");

    // Throughput unit: *rows aggregated per query* (= nodes scanned before
    // aggregation). Lets you read ops/sec as rows consumed by the aggregator.

    // Build each scale once; reuse across all aggregation benches.
    let dbs: Vec<(usize, BenchDb)> = [Scale::TINY, Scale::SMALL, Scale::MEDIUM]
        .iter()
        .map(|&s| (s, build_node_graph(s)))
        .collect();
    let db_tiny = dbs
        .iter()
        .find(|(s, _)| *s == Scale::TINY)
        .map(|(_, d)| d)
        .unwrap();
    let db_small = dbs
        .iter()
        .find(|(s, _)| *s == Scale::SMALL)
        .map(|(_, d)| d)
        .unwrap();

    // --- count(*) across scales ---
    for (size, db) in &dbs {
        group.throughput(Throughput::Elements(*size as u64));
        group.bench_with_input(BenchmarkId::new("count_star", size), size, |b, _| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute("MATCH (n:Node) RETURN count(*) AS c", opts())
                        .unwrap(),
                );
            });
        });
    }

    // All subsequent 1k benches aggregate over the SMALL (1000 node) fixture.
    group.throughput(Throughput::Elements(Scale::SMALL as u64));

    group.bench_function("count_filtered_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute(
                        "MATCH (n:Node) WHERE n.value > 50 RETURN count(n) AS c",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.bench_function("group_by_low_card_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute(
                        "MATCH (n:Node) RETURN n.value AS grp, count(n) AS cnt",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.bench_function("multi_agg_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute(
                        "MATCH (n:Node) RETURN count(n) AS cnt, min(n.id) AS lo, max(n.id) AS hi, sum(n.value) AS total",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    // collect_100 uses the TINY fixture (100 nodes).
    group.throughput(Throughput::Elements(Scale::TINY as u64));
    group.bench_function("collect_100", |b| {
        b.iter(|| {
            black_box(
                db_tiny
                    .service
                    .execute("MATCH (n:Node) RETURN collect(n.name) AS names", opts())
                    .unwrap(),
            );
        });
    });

    // Back to SMALL for the remaining 1k benches.
    group.throughput(Throughput::Elements(Scale::SMALL as u64));
    group.bench_function("group_collect_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute(
                        "MATCH (n:Node) RETURN n.value AS grp, collect(n.id) AS ids",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.bench_function("count_distinct_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute("MATCH (n:Node) RETURN count(DISTINCT n.value) AS c", opts())
                    .unwrap(),
            );
        });
    });

    // Shared social fixture for the last two benches in this group.
    // ~600 KNOWS edges scanned per iteration.
    let db_social = build_social_graph(200, 3);
    group.throughput(Throughput::Elements(600));

    group.bench_function("agg_after_traversal_200", |b| {
        b.iter(|| {
            black_box(
                db_social
                    .service
                    .execute(
                        "MATCH (p:Person)-[:KNOWS]->(f:Person) \
                         RETURN p.id AS person, count(f) AS friends",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.bench_function("having_pattern_200", |b| {
        b.iter(|| {
            black_box(
                db_social
                    .service
                    .execute(
                        "MATCH (p:Person)-[:KNOWS]->(f:Person) \
                         WITH p.id AS pid, count(f) AS cnt \
                         WHERE cnt > 2 \
                         RETURN pid, cnt",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.finish();
}

// ===================================================================
// 5. ORDERING — ORDER BY, DISTINCT, SKIP/LIMIT
// ===================================================================

fn bench_ordering(c: &mut Criterion) {
    let mut group = c.benchmark_group("ordering");

    // Throughput unit: *rows sorted/deduped per query*.

    let db_tiny = build_node_graph(Scale::TINY);
    let db_small = build_node_graph(Scale::SMALL);

    for (size, db) in [(Scale::TINY, &db_tiny), (Scale::SMALL, &db_small)] {
        group.throughput(Throughput::Elements(size as u64));
        group.bench_with_input(BenchmarkId::new("order_by_single", size), &size, |b, _| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute("MATCH (n:Node) RETURN n.id ORDER BY n.value ASC", opts())
                        .unwrap(),
                );
            });
        });
    }

    // Remaining benches all run against the SMALL (1000 node) fixture.
    group.throughput(Throughput::Elements(Scale::SMALL as u64));

    group.bench_function("order_limit_top10_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute(
                        "MATCH (n:Node) RETURN n.id, n.value ORDER BY n.value DESC LIMIT 10",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.bench_function("distinct_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute("MATCH (n:Node) RETURN DISTINCT n.value", opts())
                    .unwrap(),
            );
        });
    });

    group.bench_function("skip_limit_pagination_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute(
                        "MATCH (n:Node) RETURN n.id ORDER BY n.id SKIP 500 LIMIT 50",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.bench_function("order_multi_key_1k", |b| {
        b.iter(|| {
            black_box(
                db_small
                    .service
                    .execute(
                        "MATCH (n:Node) RETURN n.id, n.value ORDER BY n.value ASC, n.id DESC",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.finish();
}

// ===================================================================
// 6. WRITE OPERATIONS — CREATE, MERGE, SET, DELETE
// ===================================================================

fn bench_write_operations(c: &mut Criterion) {
    let mut group = c.benchmark_group("write");
    // Write benchmarks create fresh databases per iteration.
    // Throughput unit: *graph entities written per iteration* (nodes or
    // relationships). Single-entity writes use Elements(1); batched writes
    // scale with batch size.
    group.throughput(Throughput::Elements(1));

    // --- CREATE single node ---
    group.bench_function("create_single_node", |b| {
        b.iter_batched(
            BenchDb::new,
            |db| {
                black_box(
                    db.service
                        .execute("CREATE (:Bench {name: 'test', value: 42})", opts())
                        .unwrap(),
                );
            },
            BatchSize::SmallInput,
        );
    });

    // --- CREATE node + relationship ---
    group.bench_function("create_node_and_rel", |b| {
        b.iter_batched(
            || {
                let db = BenchDb::new();
                db.run("CREATE (:A {id:1}), (:B {id:2})");
                db
            },
            |db| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (a:A), (b:B) CREATE (a)-[:REL {weight: 1}]->(b)",
                            opts(),
                        )
                        .unwrap(),
                );
            },
            BatchSize::SmallInput,
        );
    });

    // --- batch CREATE via UNWIND ---
    for &size in &[10usize, 50, 100, 500] {
        group.throughput(Throughput::Elements(size as u64));
        group.bench_with_input(
            BenchmarkId::new("batch_create_unwind", size),
            &size,
            |b, &size| {
                b.iter_batched(
                    BenchDb::new,
                    |db| {
                        let q = format!(
                            "UNWIND range(1, {size}) AS i CREATE (:Batch {{id: i, val: i * 2}})"
                        );
                        black_box(db.service.execute(&q, opts()).unwrap());
                    },
                    BatchSize::SmallInput,
                );
            },
        );
    }

    // --- MERGE (create path) ---
    group.bench_function("merge_create_new", |b| {
        b.iter_batched(
            BenchDb::new,
            |db| {
                black_box(
                    db.service
                        .execute("MERGE (n:Singleton {key: 'unique'})", opts())
                        .unwrap(),
                );
            },
            BatchSize::SmallInput,
        );
    });

    // --- MERGE (match existing) ---
    group.bench_function("merge_match_existing", |b| {
        b.iter_batched(
            || {
                let db = BenchDb::new();
                db.run("CREATE (:Singleton {key: 'unique', count: 0})");
                db
            },
            |db| {
                black_box(
                    db.service
                        .execute(
                            "MERGE (n:Singleton {key: 'unique'}) ON MATCH SET n.count = n.count + 1",
                            opts(),
                        )
                        .unwrap(),
                );
            },
            BatchSize::SmallInput,
        );
    });

    // --- SET property ---
    group.bench_function("set_property", |b| {
        b.iter_batched(
            || {
                let db = BenchDb::new();
                db.run("CREATE (:Target {val: 0})");
                db
            },
            |db| {
                black_box(
                    db.service
                        .execute("MATCH (n:Target) SET n.val = 42", opts())
                        .unwrap(),
                );
            },
            BatchSize::SmallInput,
        );
    });

    // --- DELETE node ---
    group.bench_function("delete_node", |b| {
        b.iter_batched(
            || {
                let db = BenchDb::new();
                db.run("CREATE (:Temp {id: 1})");
                db
            },
            |db| {
                black_box(
                    db.service
                        .execute("MATCH (n:Temp) DELETE n", opts())
                        .unwrap(),
                );
            },
            BatchSize::SmallInput,
        );
    });

    // --- DETACH DELETE ---
    group.bench_function("detach_delete", |b| {
        b.iter_batched(
            || {
                let db = BenchDb::new();
                db.run("CREATE (:Hub {id: 1})");
                db.run("UNWIND range(1,5) AS i MATCH (h:Hub) CREATE (h)-[:E]->(:Leaf {id:i})");
                db
            },
            |db| {
                black_box(
                    db.service
                        .execute("MATCH (h:Hub) DETACH DELETE h", opts())
                        .unwrap(),
                );
            },
            BatchSize::SmallInput,
        );
    });

    group.finish();
}

// ===================================================================
// 7. FUNCTIONS — string, math, type
// ===================================================================

fn bench_functions(c: &mut Criterion) {
    let mut group = c.benchmark_group("functions");

    // These microbenchmarks stabilise in a few hundred nanoseconds. Trim the
    // measurement window further so we don't spend 2s per tiny function.
    group.warm_up_time(Duration::from_millis(300));
    group.measurement_time(Duration::from_millis(1_200));

    // Default throughput unit: *one function-evaluation query per iteration*.
    // Benches that apply a function across many rows override this with the
    // row count so the reported rate becomes "function evaluations/sec".
    group.throughput(Throughput::Elements(1));

    // Previously each no-graph bench called `BenchDb::new()` inside `b.iter()`,
    // which measured fixture setup alongside the function call. Build one DB
    // per group and reuse.
    let db_empty = BenchDb::new();
    let db_tiny = build_node_graph(Scale::TINY);
    let db_org = build_org_graph();

    // --- string functions ---
    group.bench_function("string_toLower", |b| {
        b.iter(|| {
            black_box(
                db_empty
                    .service
                    .execute("RETURN toLower('HELLO WORLD') AS r", opts())
                    .unwrap(),
            );
        });
    });

    group.bench_function("string_replace", |b| {
        b.iter(|| {
            black_box(
                db_empty
                    .service
                    .execute(
                        "RETURN replace('hello world', 'world', 'bench') AS r",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    // Row-scaling benches: one function evaluation per scanned row.
    group.throughput(Throughput::Elements(Scale::TINY as u64));
    group.bench_function("toLower_on_100_nodes", |b| {
        b.iter(|| {
            black_box(
                db_tiny
                    .service
                    .execute("MATCH (n:Node) RETURN toLower(n.name) AS lower", opts())
                    .unwrap(),
            );
        });
    });

    // Back to 1 op per iter for the next single-RETURN bench.
    group.throughput(Throughput::Elements(1));
    group.bench_function("math_abs_sqrt", |b| {
        b.iter(|| {
            black_box(
                db_empty
                    .service
                    .execute("RETURN abs(-42) AS a, sqrt(144) AS s", opts())
                    .unwrap(),
            );
        });
    });

    group.throughput(Throughput::Elements(Scale::TINY as u64));
    group.bench_function("math_on_100_nodes", |b| {
        b.iter(|| {
            black_box(
                db_tiny
                    .service
                    .execute(
                        "MATCH (n:Node) RETURN n.id, abs(n.value - 50) AS diff",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    // Org fixture: 6 WORKS_AT edges → 6 result rows.
    group.throughput(Throughput::Elements(6));
    group.bench_function("labels_keys_type", |b| {
        b.iter(|| {
            black_box(
                db_org
                    .service
                    .execute(
                        "MATCH (p:Person)-[r:WORKS_AT]->(c:Company) \
                         RETURN labels(p) AS l, keys(p) AS k, type(r) AS t",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.throughput(Throughput::Elements(Scale::TINY as u64));
    group.bench_function("case_expression_100", |b| {
        b.iter(|| {
            black_box(
                db_tiny
                    .service
                    .execute(
                        "MATCH (n:Node) RETURN CASE WHEN n.value > 50 THEN 'high' ELSE 'low' END AS tier",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.throughput(Throughput::Elements(1));
    group.bench_function("coalesce", |b| {
        b.iter(|| {
            black_box(
                db_empty
                    .service
                    .execute("RETURN coalesce(null, null, 42, 99) AS r", opts())
                    .unwrap(),
            );
        });
    });

    // list_comprehension and reduce_sum each iterate over 100 elements.
    group.throughput(Throughput::Elements(100));
    group.bench_function("list_comprehension", |b| {
        b.iter(|| {
            black_box(
                db_empty
                    .service
                    .execute(
                        "WITH range(1, 100) AS nums RETURN [x IN nums WHERE x % 2 = 0 | x * x] AS evens",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.bench_function("reduce_sum", |b| {
        b.iter(|| {
            black_box(
                db_empty
                    .service
                    .execute(
                        "RETURN reduce(acc = 0, x IN range(1, 100) | acc + x) AS total",
                        opts(),
                    )
                    .unwrap(),
            );
        });
    });

    group.finish();
}

// ===================================================================
// 8. REALISTIC WORKLOADS
// ===================================================================

fn bench_realistic(c: &mut Criterion) {
    let mut group = c.benchmark_group("realistic");
    // Realistic queries do more work per iteration, so we keep the default
    // sample count (50) but don't need extra measurement time beyond the
    // group-level default.
    group.sample_size(40);

    // Throughput unit for realistic workloads: *1 complete query per iter*.
    // These queries mix match + filter + aggregate + sort, so the meaningful
    // rate is "queries per second".
    group.throughput(Throughput::Elements(1));

    // ---- Org chart: hierarchy traversal ----
    {
        let db = build_org_graph();

        group.bench_function("org_manager_subordinates", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (m:Manager)-[:MANAGES]->(e:Person) \
                             RETURN m.name AS mgr, collect(e.name) AS team",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });

        group.bench_function("org_dept_headcount", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (p:Person) \
                             RETURN p.dept AS dept, count(p) AS cnt ORDER BY cnt DESC",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });

        group.bench_function("org_people_per_city", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (p:Person)-[:LIVES_IN]->(c:City) \
                             RETURN c.name AS city, count(p) AS residents ORDER BY residents DESC",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });

        group.bench_function("org_multi_hop_mgr_project", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (m:Manager)-[:MANAGES]->(e:Person)-[:ASSIGNED_TO]->(p:Project) \
                             RETURN m.name, e.name, p.name",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });
    }

    // ---- Social graph: friend-of-friend, mutual connections ----
    {
        let db = build_social_graph(500, 4);

        group.bench_function("social_friend_of_friend_500", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (a:Person {id:0})-[:KNOWS]->(b)-[:KNOWS]->(c) \
                             WHERE c.id <> 0 \
                             RETURN DISTINCT c.id ORDER BY c.id LIMIT 20",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });

        group.bench_function("social_mutual_friends_500", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (a:Person {id:0})-[:KNOWS]->(m:Person)<-[:KNOWS]-(b:Person {id:10}) \
                             RETURN m.id, m.name",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });

        group.bench_function("social_influence_score_500", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (p:Person) \
                             OPTIONAL MATCH (other:Person)-[:KNOWS]->(p) \
                             RETURN p.id, count(other) AS in_degree \
                             ORDER BY in_degree DESC LIMIT 10",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });

        group.bench_function("social_common_city_friends_500", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (a:Person {id:0})-[:KNOWS]->(f:Person) \
                             WHERE f.city = a.city \
                             RETURN f.id, f.name, f.city",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });
    }

    // ---- Social graph at 1k scale ----
    // Only keep the degree-distribution bench at 1k: it's the one that reveals
    // different O() behaviour than the 500-node friend-of-friend above. The
    // 1k friend_of_friend variant was redundant with the 500-node one.
    {
        let db = build_social_graph(1000, 4);

        group.bench_function("social_degree_distribution_1k", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (p:Person)-[k:KNOWS]->() \
                             RETURN p.id, count(k) AS out_degree \
                             ORDER BY out_degree DESC LIMIT 20",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });
    }

    // // ---- Dependency graph: reachability ----
    // {
    //     let db = build_dependency_graph(200);
    //
    //     group.bench_function("dep_direct_deps_200", |b| {
    //         b.iter(|| {
    //             black_box(
    //                 db.service
    //                     .execute(
    //                         "MATCH (p:Package {id:199})-[:DEPENDS_ON]->(dep:Package) \
    //                          RETURN dep.name",
    //                         opts(),
    //                     )
    //                     .unwrap(),
    //             );
    //         });
    //     });
    //
    //     group.bench_function("dep_transitive_deps_200", |b| {
    //         b.iter(|| {
    //             black_box(
    //                 db.service
    //                     .execute(
    //                         "MATCH (p:Package {id:199})-[:DEPENDS_ON*]->(dep:Package) \
    //                          RETURN DISTINCT dep.id ORDER BY dep.id",
    //                         opts(),
    //                     )
    //                     .unwrap(),
    //             );
    //         });
    //     });
    //
    //     group.bench_function("dep_reverse_dependents_200", |b| {
    //         b.iter(|| {
    //             black_box(
    //                 db.service
    //                     .execute(
    //                         "MATCH (consumer:Package)-[:DEPENDS_ON*]->(dep:Package {id:0}) \
    //                          RETURN DISTINCT consumer.id",
    //                         opts(),
    //                     )
    //                     .unwrap(),
    //             );
    //         });
    //     });
    // }

    // ---- Pipeline queries: filter → aggregate → sort ----
    {
        let db = build_social_graph(500, 4);

        group.bench_function("pipeline_filter_agg_sort_500", |b| {
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (p:Person)-[k:KNOWS]->(f:Person) \
                             WHERE k.strength > 3 \
                             WITH p.city AS city, count(f) AS strong_friends \
                             WHERE strong_friends > 1 \
                             RETURN city, strong_friends ORDER BY strong_friends DESC",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });
    }

    // ---- UNWIND + aggregation ----
    {
        group.bench_function("unwind_aggregate", |b| {
            let db = BenchDb::new();
            db.run("CREATE (:Data {tags: ['a','b','c','d','e']})");
            db.run("CREATE (:Data {tags: ['b','c','f']})");
            db.run("CREATE (:Data {tags: ['a','e','g','h']})");
            b.iter(|| {
                black_box(
                    db.service
                        .execute(
                            "MATCH (d:Data) UNWIND d.tags AS tag RETURN tag, count(tag) AS cnt ORDER BY cnt DESC",
                            opts(),
                        )
                        .unwrap(),
                );
            });
        });
    }

    group.finish();
}

// ===================================================================
// 9. PARSE/COMPILE OVERHEAD — isolate query planning cost
// ===================================================================

fn bench_parse_compile(c: &mut Criterion) {
    let mut group = c.benchmark_group("parse_compile");

    // Throughput unit: *one parse or full compile + execute per iteration*.
    // Report reads as "queries planned/sec" or "queries executed/sec".
    group.throughput(Throughput::Elements(1));

    let queries = [
        ("simple_match", "MATCH (n:Node) RETURN n"),
        (
            "match_where",
            "MATCH (n:Node) WHERE n.value > 10 RETURN n.id",
        ),
        (
            "multi_hop",
            "MATCH (a:Person)-[:KNOWS]->(b)-[:KNOWS]->(c) RETURN c",
        ),
        (
            "aggregation",
            "MATCH (n:Node) RETURN n.value AS grp, count(n) AS cnt",
        ),
        (
            "complex",
            "MATCH (p:Person)-[r:WORKS_AT]->(c:Company) \
             WHERE p.age > 30 AND r.since < 2020 \
             WITH p.name AS name, p.dept AS dept \
             RETURN dept, collect(name) AS people ORDER BY dept",
        ),
    ];

    // Measure parse-only
    for (name, query) in &queries {
        group.bench_with_input(BenchmarkId::new("parse", *name), query, |b, q| {
            let db = BenchDb::new();
            b.iter(|| {
                black_box(db.service.parse(q).unwrap());
            });
        });
    }

    // Measure parse+analyze+compile+execute on small org graph
    // (execution cost is minimal on 12 nodes; this isolates planning overhead)
    {
        let db = build_org_graph();
        let org_queries = [
            ("simple_match", "MATCH (n:Person) RETURN n"),
            (
                "match_where",
                "MATCH (n:Person) WHERE n.age > 30 RETURN n.name",
            ),
            (
                "multi_hop",
                "MATCH (a:Person)-[:MANAGES]->(b)-[:ASSIGNED_TO]->(c) RETURN c",
            ),
            (
                "aggregation",
                "MATCH (n:Person) RETURN n.dept AS grp, count(n) AS cnt",
            ),
            (
                "complex",
                "MATCH (p:Person)-[r:WORKS_AT]->(c:Company) \
                 WHERE p.age > 30 AND r.since < 2020 \
                 WITH p.name AS name, p.dept AS dept \
                 RETURN dept, collect(name) AS people ORDER BY dept",
            ),
        ];
        for (name, query) in &org_queries {
            group.bench_with_input(BenchmarkId::new("full_compile", *name), query, |b, q| {
                b.iter(|| {
                    black_box(db.service.execute(q, opts()).unwrap());
                });
            });
        }
    }

    group.finish();
}

// ===================================================================
// Criterion harness
// ===================================================================

criterion_group! {
    name = benches;
    config = bench_config();
    targets =
        bench_match_queries,
        bench_traversal,
        bench_filtering,
        bench_aggregation,
        bench_ordering,
        bench_write_operations,
        bench_functions,
        bench_realistic,
        bench_parse_compile,
}
criterion_main!(benches);