-
Notifications
You must be signed in to change notification settings - Fork 65
/
papers_bib.html
2915 lines (2726 loc) · 109 KB
/
papers_bib.html
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
<!DOCTYPE html>
<meta charset="utf-8">
<h1>CRDT Papers</h1><a name="Ignat2024Synql"></a><pre>
@inproceedings{<a href="papers.html#Ignat2024Synql">Ignat2024Synql</a>,
author = {Ignat, Claudia-Lavinia and Elvinger, Victorien and Ba, Habibatou},
title = {{Synql}: A {CRDT}-based Approach for Replicated Relational Databases with Integrity Constraints},
booktitle = {24th International Conference on Distributed Applications and Interoperable Systems},
series = {DAIS 2024},
year = {2024},
month = jun,
publisher = {Springer},
doi = {10.1007/978-3-031-62638-8_2},
pdf = {https://inria.hal.science/hal-04580135/file/DAIS2024.pdf},
keywords = {relational, invariants}
}
</pre>
<a name="Stewen2024undo"></a><pre>
@inproceedings{<a href="papers.html#Stewen2024undo">Stewen2024undo</a>,
author = {Stewen, Leo and Kleppmann, Martin},
title = {Undo and Redo Support for Replicated Registers},
booktitle = {11th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2024},
pages = {1-7},
year = {2024},
month = apr,
publisher = {ACM},
eprint = {2404.11308},
doi = {10.1145/3642976.3653029},
keywords = {undo}
}
</pre>
<a name="Da2024move"></a><pre>
@inproceedings{<a href="papers.html#Da2024move">Da2024move</a>,
author = {Da, Liangrun and Kleppmann, Martin},
title = {Extending {JSON} {CRDTs} with Move Operations},
booktitle = {11th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2024},
pages = {8-14},
year = {2024},
month = apr,
publisher = {ACM},
eprint = {2311.14007},
doi = {10.1145/3642976.3653030},
keywords = {JSON, trees}
}
</pre>
<a name="Power2024lattices"></a><pre>
@inproceedings{<a href="papers.html#Power2024lattices">Power2024lattices</a>,
author = {Power, Conor and Achalla, Saikrishna and Cottone, Ryan and Macasaet, Nathaniel and Hellerstein, Joseph M.},
title = {Wrapping Rings in Lattices: An Algebraic Symbiosis of Incremental View Maintenance and Eventual Consistency},
booktitle = {11th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2024},
pages = {15-22},
year = {2024},
month = apr,
publisher = {ACM},
pdf = {https://dl.acm.org/doi/pdf/10.1145/3642976.3653031},
doi = {10.1145/3642976.3653031},
keywords = {theory, computation, databases}
}
</pre>
<a name="Jacob2024Byzantine"></a><pre>
@inproceedings{<a href="papers.html#Jacob2024Byzantine">Jacob2024Byzantine</a>,
author = {Jacob, Florian and Hartenstein, Hannes},
title = {Logical Clocks and Monotonicity for {Byzantine}-Tolerant Replicated Data Types},
booktitle = {11th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2024},
pages = {37-43},
year = {2024},
month = apr,
publisher = {ACM},
pdf = {https://dl.acm.org/doi/pdf/10.1145/3642976.3653034},
doi = {10.1145/3642976.3653034},
keywords = {security, causal-consistency}
}
</pre>
<a name="Haas2024LoRe"></a><pre>
@article{<a href="papers.html#Haas2024LoRe">Haas2024LoRe</a>,
author = {Haas, Julian and Mogk, Ragnar and Yanakieva, Elena and Bieniusa, Annette and Mezini, Mira},
title = {{LoRe}: A Programming Model for Verifiably Safe Local-First Software},
journal = {ACM Transactions on Programming Languages and Systems},
volume = {46},
number = {1},
articleno = {2},
year = {2024},
month = jan,
publisher = {ACM},
pdf = {https://dl.acm.org/doi/pdf/10.1145/3633769},
doi = {10.1145/3633769},
eprint = {2304.07133},
keywords = {verification, computation, invariants, systems, reactive programming, mixed-consistency}
}
</pre>
<a name="Nasirifard2023orderlessChain"></a><pre>
@inproceedings{<a href="papers.html#Nasirifard2023orderlessChain">Nasirifard2023orderlessChain</a>,
author = {Nasirifard, Pezhman and Mayer, Ruben and Jacobsen, Hans-Arno},
title = {{OrderlessChain}: A {CRDT}-Based {BFT} Coordination-Free Blockchain Without Global Order of Transactions},
booktitle = {24th International Middleware Conference},
series = {Middleware 2023},
pages = {137–150},
year = {2023},
month = dec,
publisher = {ACM},
doi = {10.1145/3590140.3629111},
pdf = {https://epezhman.github.io/pubs/OrderlessChain.pdf},
keywords = {security, invariants, systems}
}
</pre>
<a name="Almeida2023approaches"></a><pre>
@article{<a href="papers.html#Almeida2023approaches">Almeida2023approaches</a>,
title = {Approaches to Conflict-free Replicated Data Types},
author = {Almeida, Paulo Sérgio},
year = {2023},
month = oct,
eprint = {2310.18220},
url = {https://arxiv.org/abs/2310.18220},
keywords = {introduction, operation-based, state-based, delta-based, pure operation-based}
}
</pre>
<a name="Renaux2023accessControl"></a><pre>
@article{<a href="papers.html#Renaux2023accessControl">Renaux2023accessControl</a>,
author = {Renaux, Thierry and Van den Vonder, Sam and De Meuter, Wolfgang},
title = {Secure {RDTs}: Enforcing Access Control Policies for Offline Available {JSON} Data},
journal = {Proceedings of the ACM on Programming Languages (PACMPL)},
volume = {7},
number = {OOPSLA2},
articleno = {227},
year = {2023},
month = oct,
publisher = {ACM},
doi = {10.1145/3622802},
pdf = {https://soft.vub.ac.be/Publications/2023/vub-tr-soft-23-17.pdf},
keywords = {security, JSON, trees}
}
</pre>
<a name="Ou2023skipList"></a><pre>
@article{<a href="papers.html#Ou2023skipList">Ou2023skipList</a>,
author = {Ou, Yuran and Zhou, Jian},
title = {{RDSL}: an Efficient Retrieval Algorithm for Group Editing {CRDT}},
year = {2023},
month = sep,
url = {https://www.researchsquare.com/article/rs-3316287/v1},
keywords = {text}
}
</pre>
<a name="Maheo2023oppnets"></a><pre>
@inproceedings{<a href="papers.html#Maheo2023oppnets">Maheo2023oppnets</a>,
author = {Mahéo, Yves and Guidec, Frédéric and Noûs, Camille},
title = {{CRDT}-based Collaborative Editing in {OppNets}: a Practical Experiment},
booktitle = {17th International Conference on Mobile Ubiquitous Computing, Systems, Services and Technologies},
series = {UBICOMM 2023},
pages = {13--21},
year = {2023},
month = sep,
publisher = {IARIA},
url = {https://www.thinkmind.org/index.php?view=article&articleid=ubicomm_2023_1_30_10015},
pdf = {https://hal.science/hal-04249567v1/document},
keywords = {systems, Yjs}
}
</pre>
<a name="Zhang2023priorityQueue"></a><pre>
@inproceedings{<a href="papers.html#Zhang2023priorityQueue">Zhang2023priorityQueue</a>,
author = {Zhang, Yuqi and Ouyang, Lingzhi and Huang, Yu and Ma, Xiaoxing},
title = {Conflict-Free Replicated Priority Queue: Design, Verification and Evaluation},
booktitle = {14th Asia-Pacific Symposium on Internetware},
series = {Internetware 2023},
pages = {302--312},
year = {2023},
month = aug,
publisher = {ACM},
doi = {10.1145/3609437.3609452},
keywords = {operation-based, priority queue, TLA+}
}
</pre>
<a name="Kuessner2023algebraic"></a><pre>
@inproceedings{<a href="papers.html#Kuessner2023algebraic">Kuessner2023algebraic</a>,
author = {Kuessner, Christian and Mogk, Ragnar and Wickert, Anna-Katharina and Mezini, Mira},
title = {Algebraic Replicated Data Types: Programming Secure Local-First Software},
booktitle = {37th European Conference on Object-Oriented Programming},
pages = {14:1--14:33},
series = {ECOOP 2023},
year = {2023},
month = jul,
publisher = {Schloss Dagstuhl},
doi = {10.4230/LIPIcs.ECOOP.2023.14},
keywords = {delta-based, state-based, composition, security}
}
</pre>
<a name="DePorre2023VeriFx"></a><pre>
@inproceedings{<a href="papers.html#DePorre2023VeriFx">DePorre2023VeriFx</a>,
author = {De Porre, Kevin and Ferreira, Carla and Gonzalez Boix, Elisa},
title = {{VeriFx}: Correct Replicated Data Types for the Masses},
booktitle = {37th European Conference on Object-Oriented Programming},
pages = {9:1--9:45},
series = {ECOOP 2023},
year = {2023},
month = jul,
publisher = {Schloss Dagstuhl},
doi = {10.4230/LIPIcs.ECOOP.2023.9},
eprint = {2207.02502},
keywords = {verification, state-based, delta-based, operation-based, pure operation-based}
}
</pre>
<a name="Bauwens2023nested"></a><pre>
@inproceedings{<a href="papers.html#Bauwens2023nested">Bauwens2023nested</a>,
author = {Bauwens, Jim and Gonzalez Boix, Elisa},
title = {Nested Pure Operation-Based {CRDTs}},
booktitle = {37th European Conference on Object-Oriented Programming},
pages = {2:1--2:26},
series = {ECOOP 2023},
year = {2023},
month = jul,
publisher = {Schloss Dagstuhl},
doi = {10.4230/LIPIcs.ECOOP.2023.2},
keywords = {composition, pure operation-based}
}
</pre>
<a name="Lavoie2023bftlog"></a><pre>
@article{<a href="papers.html#Lavoie2023bftlog">Lavoie2023bftlog</a>,
title = {{2P-BFT-Log}: 2-Phase Single-Author Append-Only Log for Adversarial Environments},
author = {Lavoie, Erick},
year = {2023},
month = jul,
eprint = {2307.08381},
url = {https://arxiv.org/abs/2307.08381},
keywords = {state-based, security}
}
</pre>
<a name="Liittschwager2023coalgebra"></a><pre>
@inproceedings{<a href="papers.html#Liittschwager2023coalgebra">Liittschwager2023coalgebra</a>,
author = {Liittschwager, Nathan and Tsampas, Stelios and Castello, Jonathan and Kuper, Lindsey},
title = {{CRDTs}, Coalgebraically (Early Ideas)},
booktitle = {10th Conference on Algebra and Coalgebra in Computer Science},
series = {CALCO 2023},
year = {2023},
month = jun,
url = {https://users.soe.ucsc.edu/~lkuper/papers/crdts-coalgebraically-calco23.pdf},
keywords = {specification, theory}
}
</pre>
<a name="Lavoie2023gocledger"></a><pre>
@article{<a href="papers.html#Lavoie2023gocledger">Lavoie2023gocledger</a>,
author = {Lavoie, Erick},
title = {{GOC-Ledger}: State-based Conflict-Free Replicated Ledger from Grow-Only Counters},
year = {2023},
month = may,
eprint = {2305.16976},
url = {https://arxiv.org/abs/2305.16976},
keywords = {state-based, security}
}
</pre>
<a name="Nieto2023modular"></a><pre>
@inproceedings{<a href="papers.html#Nieto2023modular">Nieto2023modular</a>,
author = {Nieto, Abel and Daby-Seesaram, Arnaud and Gondelman, Léon and Timany, Amin and Birkedal, Lars},
title = {Modular Verification of State-Based {CRDTs} in Separation Logic},
booktitle = {37th European Conference on Object-Oriented Programming},
series = {ECOOP 2023},
year = {2023},
month = jul,
publisher = {Schloss Dagstuhl},
doi = {10.4230/LIPIcs.ECOOP.2023.12},
pdf = {https://iris-project.org/pdfs/2023-ecoop-crdts.pdf},
keywords = {specification, verification, state-based}
}
</pre>
<a name="Zakhour2023Propel"></a><pre>
@article{<a href="papers.html#Zakhour2023Propel">Zakhour2023Propel</a>,
author = {Zakhour, George and Weisenburger, Pascal and Salvaneschi, Guido},
title = {Type-Checking {CRDT} Convergence},
journal = {Proceedings of the ACM on Programming Languages},
volume = {7},
number = {PLDI},
articleno = {162},
year = {2023},
month = jun,
pdf = {https://programming-group.com/assets/pdf/papers/2023_Type-Checking-CRDT-Convergence.pdf},
doi = {10.1145/3591276},
keywords = {verification, computation, Propel}
}
</pre>
<a name="Fernandes2023causal"></a><pre>
@inproceedings{<a href="papers.html#Fernandes2023causal">Fernandes2023causal</a>,
author = {Fernandes, Pedro Henrique and Baquero, Carlos},
title = {Probabilistic Causal Contexts for Scalable {CRDTs}},
booktitle = {10th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2023},
pages = {1–8},
year = {2023},
month = may,
publisher = {ACM},
doi = {10.1145/3578358.3591331},
keywords = {causal-consistency}
}
</pre>
<a name="Yanakieva2023spreadsheets"></a><pre>
@inproceedings{<a href="papers.html#Yanakieva2023spreadsheets">Yanakieva2023spreadsheets</a>,
author = {Yanakieva, Elena and Bird, Philipp and Bieniusa, Annette},
title = {A Study of Semantics for {CRDT}-Based Collaborative Spreadsheets},
booktitle = {10th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2023},
pages = {37–43},
year = {2023},
month = may,
publisher = {ACM},
doi = {10.1145/3578358.3591324},
keywords = {composition, systems}
}
</pre>
<a name="Jeffery2023AMC"></a><pre>
@inproceedings{<a href="papers.html#Jeffery2023AMC">Jeffery2023AMC</a>,
author = {Jeffery, Andrew and Mortier, Richard},
title = {{AMC}: Towards Trustworthy and Explorable {CRDT} Applications with the {Automerge Model Checker}},
booktitle = {10th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2023},
pages = {44–50},
year = {2023},
month = may,
publisher = {ACM},
doi = {10.1145/3578358.3591326},
pdf = {https://api.repository.cam.ac.uk/server/api/core/bitstreams/e0f9f934-9e79-4485-8745-f0a3191ff70c/content},
keywords = {verification, computation, systems, AMC}
}
</pre>
<a name="Bauwens2023NLP"></a><pre>
@inproceedings{<a href="papers.html#Bauwens2023NLP">Bauwens2023NLP</a>,
author = {Bauwens, Jim and De Porre, Kevin and Gonzalez Boix, Elisa},
title = {[Short Paper] {T}owards Improved Collaborative Text Editing {CRDTs} by Using Natural Language Processing},
booktitle = {10th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2023},
pages = {51–55},
year = {2023},
month = may,
publisher = {ACM},
doi = {10.1145/3578358.3591330},
keywords = {text-editing}
}
</pre>
<a name="Weidner2023foreach"></a><pre>
@inproceedings{<a href="papers.html#Weidner2023foreach">Weidner2023foreach</a>,
author = {Weidner, Matthew and Pradeep, Ria and Geordie, Benito and Miller, Heather},
title = {For-Each Operations in Collaborative Apps},
booktitle = {10th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2023},
pages = {56–62},
year = {2023},
month = may,
publisher = {ACM},
eprint = {2304.03141},
doi = {10.1145/3578358.3591323},
keywords = {composition}
}
</pre>
<a name="Jacob2023byzantine"></a><pre>
@inproceedings{<a href="papers.html#Jacob2023byzantine">Jacob2023byzantine</a>,
author = {Jacob, Florian and Hartenstein, Hannes},
title = {On Extend-Only Directed Posets and Derived {Byzantine}-Tolerant Replicated Data Types},
booktitle = {10th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2023},
pages = {63–69},
year = {2023},
month = may,
publisher = {ACM},
eprint = {2304.04318},
doi = {10.1145/3578358.3591333},
keywords = {security, causal-consistency}
}
</pre>
<a name="Zhang2023experience"></a><pre>
@inproceedings{<a href="papers.html#Zhang2023experience">Zhang2023experience</a>,
author = {Zhang, Yicheng and Weidner, Matthew and Miller, Heather},
title = {Programmer Experience When Using {CRDTs} to Build Collaborative Webapps: Initial Insights},
booktitle = {13th Annual Workshop on the Intersection of HCI and PL},
series = {PLATEAU 2023},
year = {2023},
month = feb,
pdf = {https://kilthub.cmu.edu/articles/conference_contribution/Programmer_Experience_When_Using_CRDTs_to_Build_Collaborative_Webapps_Initial_Insights/22277341/1},
doi = {10.1184/R1/22277341.v1},
keywords = {user-study, computation, composition}
}
</pre>
<a name="Guidec2022opportunistic"></a><pre>
@article{<a href="papers.html#Guidec2022opportunistic">Guidec2022opportunistic</a>,
author = {Guidec, Frédéric and Mahéo, Yves and Noûs, Camille},
title = {Supporting conflict-free replicated data types in opportunistic networks},
journal = {Peer-to-Peer Networking and Applications},
volume = {16},
pages = {395–419},
year = {2023},
month = jan,
publisher = {Springer},
doi = {10.1007/s12083-022-01404-6},
keywords = {systems, networks}
}
</pre>
<a name="Laddad2022CALM"></a><pre>
@article{<a href="papers.html#Laddad2022CALM">Laddad2022CALM</a>,
author = {Laddad, Shadaj and Power, Conor and Milano, Mae and Cheung, Alvin and Crooks, Natacha and Hellerstein, Joseph M.},
title = {Keep {CALM} and {CRDT} On},
journal = {Proceedings of the VLDB Endowment},
volume = {16},
number = {4},
pages = {856–863},
year = {2022},
month = dec,
eprint = {2210.12605},
doi = {10.14778/3574245.3574268},
url = {https://www.vldb.org/pvldb/vol16/p856-power.pdf},
keywords = {computation, crdt-related}
}
</pre>
<a name="Tschudin2022connectionless"></a><pre>
@inproceedings{<a href="papers.html#Tschudin2022connectionless">Tschudin2022connectionless</a>,
author = {Tschudin, Christian},
title = {A Connectionless Grow-Only Set {CRDT}},
booktitle = {3rd International Workshop on Distributed Infrastructure for the Common Good},
series = {DICG 2022},
pages = {25–30},
year = {2022},
month = nov,
publisher = {ACM},
pdf = {https://dicg-workshop.github.io/2022/papers/tschudin.pdf},
doi = {10.1145/3565383.3566110},
keywords = {delta-based, set-crdt}
}
</pre>
<a name="Jannes2022secure"></a><pre>
@inproceedings{<a href="papers.html#Jannes2022secure">Jannes2022secure</a>,
author = {Jannes, Kristof and Lagaisse, Bert and Joosen, Wouter},
title = {Secure Replication for Client-Centric Data Stores},
booktitle = {3rd International Workshop on Distributed Infrastructure for the Common Good},
series = {DICG 2022},
year = {2022},
month = nov,
pages = {31--36},
publisher = {ACM},
pdf = {https://kristofjannes.com/papers/dicg22.pdf},
doi = {10.1145/3565383.3566111},
keywords = {state-based, systems, security}
}
</pre>
<a name="Litt2022peritext"></a><pre>
@article{<a href="papers.html#Litt2022peritext">Litt2022peritext</a>,
author = {Litt, Geoffrey and Lim, Sarah and Kleppmann, Martin and van Hardenberg, Peter},
title = {Peritext: A {CRDT} for Collaborative Rich Text Editing},
journal = {Proceedings of the ACM on Human-Computer Interaction},
volume = {6},
number = {CSCW2},
articleno = {531},
year = {2022},
month = nov,
publisher = {ACM},
doi = {10.1145/3555644},
pdf = {https://www.inkandswitch.com/peritext/static/cscw-publication.pdf},
keywords = {text-editing, systems}
}
</pre>
<a name="Laddad2022lifting"></a><pre>
@article{<a href="papers.html#Laddad2022lifting">Laddad2022lifting</a>,
author = {Laddad, Shadaj and Power, Conor and Milano, Mae and Cheung, Alvin and Hellerstein, Joseph M.},
title = {Katara: Synthesizing {CRDTs} with Verified Lifting},
journal = {Proceedings of the ACM on Programming Languages},
volume = {6},
number = {OOPSLA2},
articleno = {173},
pages = {1349-1377},
year = {2022},
month = oct,
publisher = {ACM},
doi = {10.1145/3563336},
eprint = {2205.12425},
pdf = {https://www.shadaj.me/papers/katara.pdf},
keywords = {specification, verification}
}
</pre>
<a name="Nieto2022modular"></a><pre>
@article{<a href="papers.html#Nieto2022modular">Nieto2022modular</a>,
author = {Nieto, Abel and Gondelman, Léon and Reynaud, Alban and Timany, Amin and Birkedal, Lars},
title = {Modular Verification of Op-Based {CRDTs} in Separation Logic},
journal = {Proceedings of the ACM on Programming Languages},
volume = {6},
number = {OOPSLA2},
articleno = {188},
year = {2022},
month = oct,
pages = {1788–1816},
publisher = {ACM},
doi = {10.1145/3563351},
pdf = {https://iris-project.org/pdfs/2022-oopsla-crdts.pdf},
keywords = {specification, verification, operation-based}
}
</pre>
<a name="Kleppmann2022convergence"></a><pre>
@article{<a href="papers.html#Kleppmann2022convergence">Kleppmann2022convergence</a>,
author = {Kleppmann, Martin and Alvaro, Peter},
title = {Research for Practice: Convergence},
journal = {Communications of the ACM},
volume = {65},
number = {11},
pages = {104-106},
year = {2022},
month = nov,
publisher = {ACM},
doi = {10.1145/3563901},
pdf = {https://martin.kleppmann.com/papers/convergence-cacm.pdf},
keywords = {introduction, crdt-related}
}
</pre>
<a name="Munsters2022coast"></a><pre>
@inproceedings{<a href="papers.html#Munsters2022coast">Munsters2022coast</a>,
author = {Munsters, A{\"a}ron and Scull Pupo, Angel Luis and Nicolay, Jens},
title = {{COAST}: A Conflict-free Replicated Abstract Syntax Tree},
booktitle = {17th International Conference on Software Technologies},
series = {ICSOFT 2022},
pages = {187--196},
year = {2022},
month = jul,
publisher = {SciTePress},
doi = {10.5220/0011278800003266},
pdf = {<a href="http://soft.vub.ac.be/Publications/2022/vub-tr-soft-22-17.pdf">http://soft.vub.ac.be/Publications/2022/vub-tr-soft-22-17.pdf</a>},
keywords = {trees, text-editing}
}
</pre>
<a name="Soundarapandian2022MRDT"></a><pre>
@inproceedings{<a href="papers.html#Soundarapandian2022MRDT">Soundarapandian2022MRDT</a>,
author = {Soundarapandian, Vimala and Kamath, Adharsh and Nagar, Kartik and Sivaramakrishnan, KC},
title = {Certified Mergeable Replicated Data Types},
booktitle = {43rd ACM SIGPLAN Conference on Programming Language Design and Implementation},
series = {PLDI 2022},
year = {2022},
month = jun,
pages = {332–347},
publisher = {ACM},
eprint = {2203.14518},
doi = {10.1145/3519939.3523735},
keywords = {crdt-related, MRDT, verification}
}
</pre>
<a name="Houshmand2022RDMA"></a><pre>
@inproceedings{<a href="papers.html#Houshmand2022RDMA">Houshmand2022RDMA</a>,
author = {Houshmand, Farzin and Saberlatibari, Javad and Lesani, Mohsen},
title = {Hamband: {RDMA} Replicated Data Types},
booktitle = {43rd ACM SIGPLAN Conference on Programming Language Design and Implementation},
series = {PLDI 2022},
year = {2022},
month = jun,
pages = {348–363},
publisher = {ACM},
doi = {10.1145/3519939.3523426},
keywords = {crdt-related, systems}
}
</pre>
<a name="Kaki2022MRDT"></a><pre>
@inproceedings{<a href="papers.html#Kaki2022MRDT">Kaki2022MRDT</a>,
author = {Kaki, Gowtham and Prahladan, Prasanth and Lewchenko, Nicholas V.},
title = {RunTime-Assisted Convergence in Replicated Data Types},
booktitle = {43rd ACM SIGPLAN Conference on Programming Language Design and Implementation},
series = {PLDI 2022},
year = {2022},
month = jun,
pages = {364–378},
publisher = {ACM},
doi = {10.1145/3519939.3523724},
keywords = {crdt-related, MRDT, Quark}
}
</pre>
<a name="Kleppmann2022buggy"></a><pre>
@techreport{<a href="papers.html#Kleppmann2022buggy">Kleppmann2022buggy</a>,
author = {Kleppmann, Martin},
title = {Assessing the understandability of a distributed algorithm by tweeting buggy pseudocode},
year = {2022},
month = may,
institution = {University of Cambridge, Department of Computer Science and Technology},
number = {UCAM-CL-TR-969},
doi = {10.48456/tr-969},
pdf = {https://www.cl.cam.ac.uk/techreports/UCAM-CL-TR-969.pdf},
keywords = {verification}
}
</pre>
<a name="Jacob2022byzantine"></a><pre>
@inproceedings{<a href="papers.html#Jacob2022byzantine">Jacob2022byzantine</a>,
author = {Jacob, Florian and Bayreuther, Saskia and Hartenstein, Hannes},
title = {On {CRDTs} in {Byzantine} Environments},
booktitle = {GI Sicherheit 2022},
year = 2022,
month = apr,
pages = {113--126},
publisher = {Gesellschaft für Informatik, Bonn},
doi = {10.18420/sicherheit2022_07},
pdf = {https://dl.gi.de/server/api/core/bitstreams/c0813c74-49cf-46ec-9f39-7d89f02f2a85/content},
keywords = {security}
}
</pre>
<a name="Brocco2022melda"></a><pre>
@inproceedings{<a href="papers.html#Brocco2022melda">Brocco2022melda</a>,
author = {Brocco, Amos},
title = {Melda: A General Purpose Delta State {JSON} {CRDT}},
booktitle = {9th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2022},
year = {2022},
month = apr,
pages = {1--7},
publisher = {ACM},
doi = {10.1145/3517209.3524039},
keywords = {systems, delta-based, JSON, trees}
}
</pre>
<a name="Kleppmann2022byzantine"></a><pre>
@inproceedings{<a href="papers.html#Kleppmann2022byzantine">Kleppmann2022byzantine</a>,
author = {Kleppmann, Martin},
title = {Making {CRDTs} {Byzantine} Fault Tolerant},
booktitle = {9th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2022},
year = {2022},
month = apr,
pages = {8--15},
publisher = {ACM},
pdf = {https://martin.kleppmann.com/papers/bft-crdt-papoc22.pdf},
doi = {10.1145/3517209.3524042},
keywords = {security}
}
</pre>
<a name="Schiefer2022fork"></a><pre>
@inproceedings{<a href="papers.html#Schiefer2022fork">Schiefer2022fork</a>,
author = {Schiefer, Nicholas and Litt, Geoffrey and Jackson, Daniel},
title = {Merge What You Can, Fork What You Can't: Managing Data Integrity in Local-First Software},
booktitle = {9th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2022},
year = {2022},
month = apr,
pages = {24--32},
publisher = {ACM},
doi = {10.1145/3517209.3524041},
keywords = {systems, usability}
}
</pre>
<a name="Rault2022accessControl"></a><pre>
@inproceedings{<a href="papers.html#Rault2022accessControl">Rault2022accessControl</a>,
author = {Rault, Pierre-Antoine and Ignat, Claudia-Lavinia and Perrin, Olivier},
title = {Distributed Access Control for Collaborative Applications Using {CRDTs}},
booktitle = {9th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2022},
year = {2022},
month = apr,
pages = {33--38},
publisher = {ACM},
pdf = {https://hal.inria.fr/hal-03584553/file/papoc.pdf},
doi = {10.1145/3517209.3524826},
keywords = {security}
}
</pre>
<a name="Saquib2022versionTrees"></a><pre>
@inproceedings{<a href="papers.html#Saquib2022versionTrees">Saquib2022versionTrees</a>,
author = {Saquib, Nazmus and Krintz, Chandra and Wolski, Rich},
title = {Ordering Operations for Generic Replicated Data Types Using Version Trees},
booktitle = {9th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2022},
year = {2022},
month = apr,
pages = {39--46},
publisher = {ACM},
doi = {10.1145/3517209.3524038},
keywords = {crdt-related}
}
</pre>
<a name="Weidner2022counter"></a><pre>
@inproceedings{<a href="papers.html#Weidner2022counter">Weidner2022counter</a>,
author = {Weidner, Matthew and Almeida, Paulo S\'{e}rgio},
title = {An Oblivious Observed-Reset Embeddable Replicated Counter},
booktitle = {9th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2022},
year = {2022},
month = apr,
pages = {47--52},
publisher = {ACM},
pdf = {https://mattweidner.com/assets/pdf/Embeddable_counter_CRDT.pdf},
doi = {10.1145/3517209.3524084},
keywords = {counters}
}
</pre>
<a name="Rinberg2022DSON"></a><pre>
@article{<a href="papers.html#Rinberg2022DSON">Rinberg2022DSON</a>,
author = {Rinberg, Arik and Solomon, Tomer and Shlomo, Roee and Khazma, Guy and Lushi, Gal and Keidar, Idit and Ta-Shma, Paula},
title = {{DSON}: {JSON CRDT} Using Delta-Mutations for Document Stores},
journal = {Proceedings of the VLDB Endowment},
volume = {15},
number = {5},
pages = {1053–1065},
year = {2022},
month = jan,
pdf = {https://www.vldb.org/pvldb/vol15/p1053-rinberg.pdf},
doi = {10.14778/3510397.3510403},
keywords = {systems, delta-based, JSON, trees}
}
</pre>
<a name="Brocco2021json"></a><pre>
@inproceedings{<a href="papers.html#Brocco2021json">Brocco2021json</a>,
author = {Brocco, Amos},
title = {Delta-State {JSON} {CRDT}: Putting Collaboration on Solid Ground},
booktitle = {23rd International Symposium on Stabilization, Safety, and Security of Distributed Systems},
series = {SSS 2021},
year = {2021},
month = nov,
publisher = {Springer LNCS volume 13046},
pages = {474-478},
doi = {10.1007/978-3-030-91081-5_32},
keywords = {systems, delta-based, JSON, Solid}
}
</pre>
<a name="Kleppmann2021move"></a><pre>
@article{<a href="papers.html#Kleppmann2021move">Kleppmann2021move</a>,
author = {Kleppmann, Martin and Mulligan, Dominic P. and Gomes, Victor B. F. and Beresford, Alastair R.},
title = {A highly-available move operation for replicated trees},
journal = {IEEE Transactions on Parallel and Distributed Systems},
volume = {33},
number = {7},
pages = {1711--1724},
year = {2021},
month = oct,
publisher = {IEEE},
doi = {10.1109/TPDS.2021.3118603},
pdf = {https://martin.kleppmann.com/papers/move-op.pdf},
keywords = {trees, verification}
}
</pre>
<a name="DePorre2021ecros"></a><pre>
@article{<a href="papers.html#DePorre2021ecros">DePorre2021ecros</a>,
author = {De Porre, Kevin and Ferreira, Carla and Pregui\c{c}a, Nuno and Gonzalez Boix, Elisa},
title = {{ECROs}: Building Global Scale Systems from Sequential Code},
journal = {Proceedings of the ACM on Programming Languages (PACMPL)},
volume = {5},
number = {OOPSLA},
articleno = {107},
year = {2021},
month = oct,
publisher = {ACM},
doi = {10.1145/3485484},
keywords = {crdt-related}
}
</pre>
<a name="Brattli2021undo"></a><pre>
@inproceedings{<a href="papers.html#Brattli2021undo">Brattli2021undo</a>,
author = {Brattli, Eric and Yu, Weihai},
title = {Supporting Undo and Redo for Replicated Registers in Collaborative Applications},
booktitle = {18th International Conference on Cooperative Design, Visualization, and Engineering},
series = {CDVE 2021},
year = {2021},
month = oct,
pages = {195-205},
publisher = {Springer LNCS volume 12983},
doi = {10.1007/978-3-030-88207-5_19},
keywords = {undo}
}
</pre>
<a name="Brocco2021chain"></a><pre>
@inproceedings{<a href="papers.html#Brocco2021chain">Brocco2021chain</a>,
author = {Brocco, Amos},
title = {The Document Chain: a Delta {CRDT} framework for arbitrary {JSON} data},
booktitle = {29th Italian Symposium on Advanced Database Systems},
series = {SEBD 2021},
year = {2021},
month = sep,
pages = {59--70},
publisher = {CEUR Workshop Proceedings},
pdf = {https://ceur-ws.org/Vol-2994/paper6.pdf},
keywords = {delta-based, JSON}
}
</pre>
<a name="Jannes2021owebsync"></a><pre>
@article{<a href="papers.html#Jannes2021owebsync">Jannes2021owebsync</a>,
author = {Jannes, Kristof and Lagaisse, Bert and Joosen, Wouter},
title = {{OWebSync}: Seamless Synchronization of Distributed Web Clients},
journal = {IEEE Transactions on Parallel and Distributed Systems},
volume = {32},
number = {9},
year = {2021},
month = sep,
pages = {2338-2351},
publisher = {IEEE},
doi = {10.1109/TPDS.2021.3066276},
pdf = {https://kristofjannes.com/papers/tpds_owebsync.pdf},
keywords = {state-based, synchronisation protocols, JSON, trees, systems, OWebSync}
}
</pre>
<a name="Tomter2021sqlite"></a><pre>
@inproceedings{<a href="papers.html#Tomter2021sqlite">Tomter2021sqlite</a>,
author = {Tomter, Iver Toft and Yu, Weihai},
title = {Augmenting {SQLite} for Local-First Software},
booktitle = {European Conference on Advances in Databases and Information Systems},
series = {ADBIS 2021},
year = {2021},
month = aug,
pages = {247-257},
publisher = {Springer},
doi = {10.1007/978-3-030-85082-1_22},
pdf = {https://munin.uit.no/bitstream/handle/10037/24430/article.pdf},
keywords = {systems, relational, SQLite}
}
</pre>
<a name="Nair2021PhD"></a><pre>
@phdthesis{<a href="papers.html#Nair2021PhD">Nair2021PhD</a>,
author = {Nair, Sreeja Sasidharan},
title = {Designing safe and highly available distributed applications},
school = {Sorbonne Universit{\'e}},
year = {2021},
month = jul,
url = {https://theses.hal.science/tel-03339393},
keywords = {verification, trees, Soteria, Maram}
}
</pre>
<a name="Cholvi2021bdso"></a><pre>
@inproceedings{<a href="papers.html#Cholvi2021bdso">Cholvi2021bdso</a>,
author = {Cholvi, Vicent and Fern\'{a}ndez Anta, Antonio and Georgiou, Chryssis and Nicolaou, Nicolas and Raynal, Michel and Russo, Antonio},
title = {Byzantine-Tolerant Distributed Grow-Only Sets: Specification and Applications},
booktitle = {4th International Symposium on Foundations and Applications of Blockchain},
series = {FAB 2021},
pages = {2:1--2:19},
year = {2021},
volume = {92},
publisher = {Schloss Dagstuhl},
doi = {10.4230/OASIcs.FAB.2021.2},
eprint = {2103.08936},
keywords = {security, set-crdt}
}
</pre>
<a name="Yactine2021ASPAS"></a><pre>
@inproceedings{<a href="papers.html#Yactine2021ASPAS">Yactine2021ASPAS</a>,
author = {Yactine, Houssam and Shoker, Ali and Younes, Georges},
title = {{ASPAS}: As Secure as Possible Available Systems},
booktitle = {21st International Conference on Distributed Applications and Interoperable Systems},
series = {DAIS 2021},
year = {2021},
month = jun,
pages = {57-73},
publisher = {Springer},
doi = {10.1007/978-3-030-78198-9_4},
pdf = {https://repositorio.inesctec.pt/server/api/core/bitstreams/cc430163-343b-4e72-b384-aa919a36b2b1/content},
keywords = {systems, security}
}
</pre>
<a name="Brattli2021thesis"></a><pre>
@mastersthesis{<a href="papers.html#Brattli2021thesis">Brattli2021thesis</a>,
author = {Brattli, Eric},
title = {Supporting Undo and Redo for Local-First Software: An Implementation in {Automerge}},
school = {UiT The Arctic University of Norway},
year = {2021},
month = jun,
number = {INF-3981},
pdf = {https://munin.uit.no/bitstream/handle/10037/22345/thesis.pdf},
keywords = {undo}
}
</pre>
<a name="Yanakieva2021accesscontrol"></a><pre>
@inproceedings{<a href="papers.html#Yanakieva2021accesscontrol">Yanakieva2021accesscontrol</a>,
author = {Yanakieva, Elena and Youssef, Michael and Rezae, Ahmad Hussein and Bieniusa, Annette},
title = {Access Control Conflict Resolution in Distributed File Systems Using {CRDTs}},
booktitle = {8th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2021},
articleno = {1},
year = {2021},
month = apr,
publisher = {ACM},
doi = {10.1145/3447865.3457970},
keywords = {filesystem, Repliss, access control}
}
</pre>
<a name="Rinberg2021array"></a><pre>
@inproceedings{<a href="papers.html#Rinberg2021array">Rinberg2021array</a>,
author = {Rinberg, Arik and Solomon, Tomer and Khazma, Guy and Lushi, Gal and Shlomo, Roee and Ta-Shma, Paula},
title = {Array {CRDTs} Using Delta-Mutations},
booktitle = {8th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2021},
articleno = {3},
year = {2021},
month = apr,
publisher = {ACM},
doi = {10.1145/3447865.3457971},
keywords = {list-crdt, delta-based, JSON}
}
</pre>
<a name="Bauwens2021reactivity"></a><pre>
@inproceedings{<a href="papers.html#Bauwens2021reactivity">Bauwens2021reactivity</a>,
author = {Bauwens, Jim and Boix, Elisa Gonzalez},
title = {Improving the Reactivity of Pure Operation-Based {CRDTs}},
booktitle = {8th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2021},
articleno = {4},
year = {2021},
month = apr,
publisher = {ACM},
doi = {10.1145/3447865.3457968},
keywords = {pure operation-based, systems, Flec}
}
</pre>
<a name="Litt2021cambria"></a><pre>
@inproceedings{<a href="papers.html#Litt2021cambria">Litt2021cambria</a>,
author = {Litt, Geoffrey and Hardenberg, Peter van and Henry, Orion},
title = {{Cambria}: Schema Evolution in Distributed Systems with Edit Lenses},
booktitle = {8th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2021},
articleno = {8},
year = {2021},
month = apr,
publisher = {ACM},
doi = {10.1145/3447865.3457963},
keywords = {schemas, systems, Cambria}
}
</pre>
<a name="Nair2021Maram"></a><pre>
@article{<a href="papers.html#Nair2021Maram">Nair2021Maram</a>,
author = {Nair, Sreeja and Meirim, Filipe and Pereira, Mário and Ferreira, Carla and Shapiro, Marc},
title = {A coordination-free, convergent, and safe replicated tree},
year = {2021},
month = mar,
eprint = {2103.04828},
url = {https://arxiv.org/abs/2103.04828},
keywords = {trees, Maram}
}
</pre>
<a name="Barbosa2021secure"></a><pre>
@inproceedings{<a href="papers.html#Barbosa2021secure">Barbosa2021secure</a>,
author = {Barbosa, Manuel and Ferreira, Bernardo and Marques, Jo\~{a}o and Portela, Bernardo and Pregui\c{c}a, Nuno},
title = {Secure Conflict-Free Replicated Data Types},
booktitle = {International Conference on Distributed Computing and Networking 2021},
series = {ICDCN 2021},
year = {2021},
month = jan,
pages = {6--15},
publisher = {ACM},
doi = {10.1145/3427796.3427831},
pdf = {https://repositorio.inesctec.pt/bitstream/123456789/12112/1/P-00T-BT2.pdf},
keywords = {security, Antidote}
}
</pre>
<a name="Kleppmann2020byzantine"></a><pre>
@article{<a href="papers.html#Kleppmann2020byzantine">Kleppmann2020byzantine</a>,