forked from ept/crdt-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
papers.bib
2082 lines (1898 loc) · 69.1 KB
/
papers.bib
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
% Style guide for all types of paper:
% - for `author`, use `Surname, Firstname` format
% - use `doi` whenever known. If a DOI exists, there is no need for a separate
% link to the publisher page in the `url` field
% - use `pdf` for authors' preprints, and use `url` for the primary URL of a resource
% - for arxiv preprints, use `eprint = {1806.10254}` (but not `url`);
% for arxiv-only articles, use `url` linking to the abstract page (`/abs/...`)
% Style guide for conference papers:
% - use `booktitle` for full name of the conference (not including "Proceedings of the")
% - use `series` for conference abbreviation including 4-digit year
% - keep `publisher` as short as possible: e.g. ACM, IEEE, Springer
% - for volumes in a series, don't use `volume`, but put the number in the
% `publisher` field instead, e.g. `publisher = {Springer LNCS volume 8460}`
% - use `pages` and/or `articleno`, but not `number`
% - don't use `editor`, `location`, `address`, or `organization`
% Style guide for tech reports:
% - use `institution` for publishing organisation and `number` for report number
% - use e.g. `type = {Research Report}` to customise the term "tech report"
% Records in this file are sorted in reverse chronological order (newest first)
% 2022
@article{Guidec2022opportunistic,
title = {Supporting conflict-free replicated data types in opportunistic networks},
author = {Guidec, Frédéric and Mahéo, Yves and Noûs, Camille},
journal = {Peer-to-Peer Networking and Applications},
year = {2022},
month = dec,
publisher = {Springer},
doi = {10.1007/s12083-022-01404-6},
keywords = {systems, networks}
}
@inproceedings{Jannes2022secure,
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}
}
@article{Litt2022peritext,
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}
}
@article{Nieto2022modular,
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},
url = {https://iris-project.org/pdfs/2022-oopsla-crdts.pdf},
keywords = {specification, verification}
}
@article{Kleppmann2022convergence,
author = {Kleppmann, Martin and Alvaro, Peter},
title = {Research for Practice: Convergence},
journal = {Communications of the ACM},
volume = {65},
issue = {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}
}
@article{DePorre2022VeriFx,
author = {De Porre, Kevin and Ferreira, Carla and Gonzalez Boix, Elisa},
title = {{VeriFx}: Correct Replicated Data Types for the Masses},
year = {2022},
month = jul,
eprint = {2207.02502},
url = {https://arxiv.org/abs/2207.02502},
keywords = {verification}
}
@inproceedings{Soundarapandian2022MRDT,
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}
}
@inproceedings{Houshmand2022RDMA,
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}
}
@inproceedings{Kaki2022MRDT,
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},
}
@article{Laddad2022lifting,
author = {Laddad, Shadaj and Power, Conor and Milano, Mae and Cheung, Alvin and Hellerstein, Joseph M.},
title = {Synthesizing {CRDTs} from Sequential Data Types with Verified Lifting},
year = {2022},
month = may,
eprint = {2205.12425},
url = {https://arxiv.org/abs/2205.12425},
keywords = {specification, verification}
}
@techreport{Kleppmann2022buggy,
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}
}
@inproceedings{Brocco2022melda,
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}
}
@inproceedings{Kleppmann2022byzantine,
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}
}
@inproceedings{Schiefer2022fork,
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}
}
@inproceedings{Rault2022accessControl,
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}
}
@inproceedings{Saquib2022versionTrees,
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}
}
@inproceedings{Weidner2022counter,
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}
}
@article{Rinberg2022DSON,
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, trees}
}
% 2021
@inproceedings{Brocco2021json,
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}
}
@article{Kleppmann2021move,
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},
issue = {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}
}
@article{DePorre2021ecros,
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}
}
@inproceedings{Brattli2021undo,
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}
}
@article{Jannes2021owebsync,
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, systems, OWebSync}
}
@inproceedings{Tomter2021sqlite,
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}
}
@inproceedings{Yanakieva2021accesscontrol,
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}
}
@inproceedings{Rinberg2021array,
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}
}
@inproceedings{Bauwens2021reactivity,
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}
}
@inproceedings{Litt2021cambria,
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}
}
@article{Nair2021Maram,
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}
}
@inproceedings{Barbosa2021secure,
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}
}
% 2020
@article{Liu2020haskell,
author = {Liu, Yiyun and Parker, James and Redmond, Patrick and Kuper, Lindsey and Hicks, Michael and Vazou, Niki},
title = {Verifying Replicated Data Types with Typeclass Refinements in {Liquid Haskell}},
journal = {Proceedings of the ACM on Programming Languages},
volume = {4},
number = {OOPSLA},
articleno = {216},
year = {2020},
month = {nov},
publisher = {ACM},
doi = {10.1145/3428284},
keywords = {verification}
}
@inproceedings{Bauwens2020gc,
author = {Bauwens, Jim and Gonzalez Boix, Elisa},
title = {From Causality to Stability: Understanding and Reducing Meta-Data in {CRDTs}},
booktitle = {17th International Conference on Managed Programming Languages and Runtimes},
series = {MPLR 2020},
year = {2020},
month = nov,
pages = {3--14},
publisher = {ACM},
doi = {10.1145/3426182.3426183},
pdf = {https://soft.vub.ac.be/~jibauwen/publications/mplr20-from-causality-to-stability-jimbauwens.pdf},
keywords = {operation-based, systems, Flec}
}
@inproceedings{Yu2020relations,
author = {Yu, Weihai and Ignat, Claudia-Lavinia},
title = {Conflict-Free Replicated Relations for Multi-Synchronous Database Management at Edge},
booktitle = {IEEE International Conference on Smart Data Services},
series = {SMDS 2020},
year = {2020},
month = oct,
pages = {113--121},
publisher = {IEEE},
doi = {10.1109/SMDS49396.2020.00021},
pdf = {https://hal.inria.fr/hal-02983557/},
keywords = {relational database,delta-crdt,integrity constraints}
}
@article{DePorre2020cscript,
author = {De Porre, Kevin and Myter, Florian and Scholliers, Christophe and Gonzalez Boix, Elisa},
title = {{CScript}: A distributed programming language for building mixed-consistency applications},
journal = {Journal of Parallel and Distributed Computing volume 144},
pages = {109-123},
year = {2020},
month = oct,
issn = "0743-7315",
doi = {10.1016/j.jpdc.2020.05.010},
pdf = {http://soft.vub.ac.be/Publications/2020/vub-tr-soft-20-04.pdf},
keywords = {computation, composition, systems, CScript}
}
% A 2-page summary of this paper appears at PaPoC 2020:
% https://dl.acm.org/doi/10.1145/3380787.3393687
@article{Weidner2020composing,
author = {Weidner, Matthew and Miller, Heather and Meiklejohn, Christopher},
title = {Composing and Decomposing Op-Based {CRDTs} with Semidirect Products},
booktitle = {25th ACM SIGPLAN International Conference on Functional Programming},
series = {ICFP 2020},
year = {2020},
month = aug,
publisher = {ACM},
eprint = {2004.04303},
doi = {10.1145/3408976},
pdf = {https://dl.acm.org/doi/pdf/10.1145/3408976},
keywords = {composition, operation-based}
}
@inproceedings{Dolan2020undoable,
author = {Dolan, Stephen},
title = {Brief Announcement: The Only Undoable {CRDTs} Are Counters},
year = {2020},
month = aug,
booktitle = {39th Symposium on Principles of Distributed Computing},
series = {PODC 2020},
pages = {57–58},
publisher = {ACM},
doi = {10.1145/3382734.3405749},
eprint = {2006.10494},
keywords = {set-crdt, counters, undo}
}
@mastersthesis{Blau2020delta,
author = {Blau, Taylor},
title = {Verifying Strong Eventual Consistency in $\delta$-CRDTs},
year = {2020},
month = jun,
school = {University of Washington},
type = {Bachelor's Thesis},
eprint = {2006.09823},
keywords = {state-based, verification}
}
@inproceedings{Kleppmann2020moving,
author = {Kleppmann, Martin},
title = {Moving Elements in List {CRDTs}},
booktitle = {7th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2020},
year = {2020},
month = apr,
publisher = {ACM},
articleno = {4},
doi = {10.1145/3380787.3393677},
pdf = {https://martin.kleppmann.com/papers/list-move-papoc20.pdf},
keywords = {text-editing}
}
@inproceedings{Yu2020causalLengths,
author = {Yu, Weihai and Rostad, Sigbj\o{}rn},
title = {A Low-Cost Set {CRDT} Based on Causal Lengths},
booktitle = {7th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2020},
year = {2020},
month = apr,
publisher = {ACM},
articleno = {5},
doi = {10.1145/3380787.3393678},
keywords = {set-crdt}
}
@inproceedings{Grosch2020AutoCouch,
author = {Grosch, Pascal and Krafft, Roman and W\"{o}lki, Marcel and Bieniusa, Annette},
title = {{AutoCouch}: A {JSON} {CRDT} Framework},
booktitle = {7th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2020},
year = {2020},
month = apr,
publisher = {ACM},
articleno = {6},
doi = {10.1145/3380787.3393679},
keywords = {systems, Automerge, AutoCouch}
}
@inproceedings{Grishchenko2020Chronofold,
author = {Grishchenko, Victor and Patrakeev, Mikhail},
title = {{Chronofold}: A Data Structure for Versioned Text},
booktitle = {7th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2020},
year = {2020},
month = apr,
publisher = {ACM},
articleno = {7},
doi = {10.1145/3380787.3393680},
eprint = {2002.09511},
keywords = {text-editing, Chronofold}
}
@inproceedings{Nicolas2020renaming,
author = {Nicolas, Matthieu and Oster, G\'{e}rald and Perrin, Olivier},
title = {Efficient Renaming in Sequence {CRDTs}},
booktitle = {7th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2020},
year = {2020},
month = apr,
publisher = {ACM},
articleno = {9},
doi = {10.1145/3380787.3393682},
pdf = {https://hal.inria.fr/hal-02526724/document},
keywords = {text-editing, LogootSplit}
}
@inproceedings{vanHardenberg2020PushPin,
author = {van Hardenberg, Peter and Kleppmann, Martin},
title = {{PushPin}: Towards Production-Quality Peer-to-Peer Collaboration},
booktitle = {7th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2020},
year = {2020},
month = apr,
publisher = {ACM},
articleno = {10},
doi = {10.1145/3380787.3393683},
pdf = {https://martin.kleppmann.com/papers/pushpin-papoc20.pdf},
keywords = {systems, usability, PushPin}
}
@inproceedings{Bauwens2020Flec,
author = {Bauwens, Jim and Gonzalez Boix, Elisa},
title = {{Flec}: A Versatile Programming Framework for Eventually Consistent Systems},
booktitle = {7th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2020},
year = {2020},
month = apr,
publisher = {ACM},
articleno = {12},
doi = {10.1145/3380787.3393685},
keywords = {systems, Flec}
}
% 2019
@inproceedings{Yu2019undo,
author = {Yu, Weihai and Elvinger, Victorien and Ignat, Claudia-Lavinia},
title = {A Generic Undo Support for State-Based {CRDTs}},
booktitle = {23rd International Conference on Principles of Distributed Systems},
series = {OPODIS 2019},
year = {2019},
month = nov,
publisher = {Dagstuhl LIPIcs},
articleno = {14},
doi = {10.4230/LIPIcs.OPODIS.2019.14},
pdf = {https://drops.dagstuhl.de/opus/volltexte/2020/11800/pdf/LIPIcs-OPODIS-2019-14.pdf},
keywords = {state-based, undo}
}
@inproceedings{Kleppmann2019localfirst,
author = {Kleppmann, Martin and Wiggins, Adam and van Hardenberg, Peter and McGranaghan, Mark},
title = {Local-First Software: You own your data, in spite of the cloud},
booktitle = {ACM SIGPLAN International Symposium on New Ideas, New Paradigms, and Reflections on Programming and Software},
series = {Onward! 2019},
year = {2019},
month = oct,
publisher = {ACM},
pages = {154--178},
doi = {10.1145/3359591.3359737},
pdf = {https://martin.kleppmann.com/papers/local-first.pdf},
keywords = {systems, usability}
}
@article{Kaki2019mergeable,
author = {Kaki, Gowtham and Priya, Swarn and Sivaramakrishnan, KC and Jagannathan, Suresh},
title = {Mergeable Replicated Data Types},
journal = {Proceedings of the ACM on Programming Languages (PACMPL)},
year = {2019},
volume = {3},
number = {OOPSLA},
month = oct,
publisher = {ACM},
doi = {10.1145/3360580},
url = {https://gowthamk.github.io/docs/mrdt.pdf},
keywords = {crdt-related, MRDT}
}
@article{Mogk2019faulttolerantRP,
author = {Mogk, Ragnar and Drechsler, Joscha and Salvaneschi, Guido and Mezini, Mira},
title = {A Fault-Tolerant Programming Model for Distributed Interactive Applications},
journal = {Proceedings of the ACM on Programming Languages (PACMPL)},
year = {2019},
volume = {3},
number = {OOPSLA},
month = oct,
publisher = {ACM},
doi = {10.1145/3360570},
keywords = {systems}
}
@inproceedings{Bauwens2019memory,
author = {Bauwens, Jim and Gonzalez Boix, Elisa},
title = {Memory Efficient {CRDTs} in Dynamic Environments},
booktitle = {11th ACM SIGPLAN International Workshop on Virtual Machines and Intermediate Languages},
series = {VMIL 2019},
year = {2019},
month = oct,
publisher = {ACM},
pages = {48–57},
doi = {10.1145/3358504.3361231},
pdf = {http://soft.vub.ac.be/Publications/2019/vub-soft-tr-19-22.pdf},
keywords = {systems, operation-based, memory management}
}
@inproceedings{Auvolat2019merkle,
author = {Auvolat, Alex and Taïani, François},
title = {{Merkle} Search Trees: Efficient State-Based {CRDTs} in Open Networks},
booktitle = {38th Symposium on Reliable Distributed Systems},
series = {SRDS 2019},
year = {2019},
pages = {221-230},
publisher = {IEEE},
doi = {10.1109/SRDS47363.2019.00032},
keywords = {state-based, security}
}
@article{Kollmann2019Snapdoc,
author = {Kollmann, Stephan A and Kleppmann, Martin and Beresford, Alastair R},
title = {{Snapdoc}: Authenticated snapshots with history privacy in peer-to-peer collaborative editing},
journal = {Proceedings on Privacy Enhancing Technologies (PoPETS)},
volume = {2019},
number = {3},
pages = {210--232},
year = {2019},
month = jul,
publisher = {De Gruyter},
doi = {10.2478/popets-2019-0044},
pdf = {https://www.petsymposium.org/2019/files/papers/issue3/popets-2019-0044.pdf},
keywords = {security}
}
@inproceedings{DePorre2019order,
author = {De Porre, Kevin and Myter, Florian and De Troyer, Christophe and Scholliers, Christophe and De Meuter, Wolfgang and Gonzalez Boix, Elisa},
title = {Putting Order in Strong Eventual Consistency},
booktitle = {19th IFIP WG 6.1 International Conference on Distributed Applications and Interoperable Systems},
series = {DAIS 2019},
year = {2019},
month = jun,
publisher = {Springer LNCS volume 11534},
pages = {36--56},
doi = {10.1007/978-3-030-22496-7_3},
pdf = {http://soft.vub.ac.be/Publications/2019/vub-soft-tr-19-09.pdf},
keywords = {systems, CScript}
}
@inproceedings{Enes2019synchronization,
author = {Enes, Vitor and Almeida, Paulo S{\'e}rgio and Baquero, Carlos and Leit\~{a}o, Jo\~{a}o},
title = {Efficient Synchronization of State-Based {CRDTs}},
booktitle = {35th IEEE International Conference on Data Engineering},
series = {ICDE 2019},
year = {2019},
month = apr,
pages = {148--159},
doi = {10.1109/ICDE.2019.00022},
eprint = {1803.02750},
keywords = {state-based}
}
@inproceedings{Leijnse2019higherorder,
author = {Leijnse, Adriaan and Almeida, Paulo S\'{e}rgio and Baquero, Carlos},
title = {Higher-Order Patterns in Replicated Data Types},
booktitle = {6th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2019},
year = {2019},
month = mar,
publisher = {ACM},
articleno = {5},
doi = {10.1145/3301419.3323971},
pdf = {https://repositorio.inesctec.pt/bitstream/123456789/10536/1/P-00Q-WJM.pdf},
keywords = {composition}
}
@inproceedings{Kleppmann2019interleaving,
author = {Kleppmann, Martin and Gomes, Victor B. F. and Mulligan, Dominic P. and Beresford, Alastair R.},
title = {Interleaving Anomalies in Collaborative Text Editors},
booktitle = {6th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2019},
year = {2019},
month = mar,
publisher = {ACM},
articleno = {6},
doi = {10.1145/3301419.3323972},
pdf = {https://martin.kleppmann.com/papers/interleaving-papoc19.pdf},
keywords = {text-editing}
}
@inproceedings{Mealha2019cloudEdge,
author = {Mealha, David and Pregui\c{c}a, Nuno and Gomes, Maria Cecilia and Leit\~{a}o, Jo\~{a}o},
title = {Data Replication on the Cloud/Edge},
booktitle = {6th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2019},
year = {2019},
month = mar,
publisher = {ACM},
articleno = {7},
doi = {10.1145/3301419.3323973},
keywords = {systems}
}
@inproceedings{DePorre2019generic,
author = {De Porre, Kevin and Myter, Florian and De Troyer, Christophe and Scholliers, Christophe and De Meuter, Wolfgang and Gonzalez Boix, Elisa},
title = {A Generic Replicated Data Type for Strong Eventual Consistency},
booktitle = {6th Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2019},
year = {2019},
month = mar,
publisher = {ACM},
articleno = {8},
doi = {10.1145/3301419.3323974},
pdf = {http://soft.vub.ac.be/Publications/2019/vub-soft-tr-19-08.pdf},
keywords = {text-editing, operation-based}
}
% 2018
@inproceedings{Hall2018CausalGraph,
author = {Hall, Aaron and Nelson, Grant and Thiesen, Mike and Woods, Nate},
title = {The Causal Graph {CRDT} for Complex Document Structure},
booktitle = {18th ACM Symposium on Document Engineering},
series = {DocEng 2018},
year = {2018},
month = aug,
publisher = {ACM},
articleno = {34},
numpages = {4},
location = {Halifax, NS, Canada},
doi = {10.1145/3209280.3229110},
keywords = {text-editing, trees}
}
@article{Lv2018CAD,
author = {Lv, Xiao and He, Fazhi and Cheng, Yuan and Wu, Yiqi},
title = {A novel {CRDT}-based synchronization method for real-time collaborative {CAD} systems},
journal = {Advanced Engineering Informatics},
year = {2018},
month = aug,
volume = {38},
pages = {381--391},
publisher = {Elsevier},
doi = {10.1016/j.aei.2018.08.008},
keywords = {systems}
}
@inproceedings{Mogk2018distributedRP,
author = {Mogk, Ragnar and Baumg{\"a}rtner, Lars and Salvaneschi, Guido and Freisleben, Bernd and Mezini, Mira},
title = {Fault-tolerant Distributed Reactive Programming},
booktitle = {32nd European Conference on Object-Oriented Programming},
series = {ECOOP 2018},
ISBN = {978-3-95977-079-8},
ISSN = {1868-8969},
year = {2018},
month = jul,
volume = {109},
publisher = {Schloss Dagstuhl--Leibniz-Zentrum fuer Informatik},
URN = {urn:nbn:de:0030-drops-92064},
doi = {10.4230/LIPIcs.ECOOP.2018.1},
keywords = {systems}
}
@inproceedings{Chandramouli2018Faster,
author = {Chandramouli, Badrish and Prasaad, Guna and Kossmann, Donald and Levandoski, Justin and Hunter, James and Barnett, Mike},
title = {{FASTER}: A Concurrent Key-Value Store with In-Place Updates},
booktitle = {International Conference on Management of Data},
series = {SIGMOD 2018},
year = {2018},
month = jun,
publisher = {ACM},
pages = {275--290},
doi = {10.1145/3183713.3196898},
pdf = {https://www.microsoft.com/en-us/research/uploads/prod/2018/03/faster-sigmod18.pdf},
keywords = {systems}
}
@article{Preguica2018crdts,
author = {Pregui{\c c}a, Nuno},
title = {Conflict-free Replicated Data Types: An Overview},
year = {2018},
month = jun,
eprint = {1806.10254},
url = {https://arxiv.org/abs/1806.10254},
keywords = {introduction}
}
@incollection{Preguica2018encyclopedia,
author = {Pregui{\c c}a, Nuno and Baquero, Carlos and Shapiro, Marc},
title = {Conflict-Free Replicated Data Types ({CRDT}s)},
booktitle = {Encyclopedia of Big Data Technologies},
year = {2018},
month = may,
publisher = {Springer},
doi = {10.1007/978-3-319-63962-8_185-1},
eprint = {1805.06358},
keywords = {introduction}
}
@article{Kleppmann2018OpSets,
author = {Kleppmann, Martin and Gomes, Victor B F and Mulligan, Dominic P and Beresford, Alastair R},
title = {{OpSets}: Sequential Specifications for Replicated Datatypes (Extended Version)},
year = {2018},
month = may,
eprint = {1805.04263},
url = {https://arxiv.org/abs/1805.04263},
keywords = {specification, verification}
}
@inproceedings{Shapiro2018referential,
author = {Shapiro, Marc and Bieniusa, Annette and Zeller, Peter and Petri, Gustavo},
title = {Ensuring Referential Integrity under Causal Consistency},
booktitle = {5th Workshop on the Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2018},
year = {2018},
month = apr,
publisher = {ACM},
articleno = {1},
doi = {10.1145/3194261.3194262},
pdf = {https://pages.lip6.fr/Marc.Shapiro/papers/causal-refs-papoc-2018-04.pdf},
keywords = {causal-consistency}
}
@inproceedings{Bauwens2018constraining,
author = {Bauwens, Jim and Myter, Florian and Gonzalez Boix, Elisa},
title = {Constraining the Eventual in Eventual Consistency},
booktitle = {5th Workshop on the Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2018},
year = {2018},
month = apr,
publisher = {ACM},
articleno = {2},
doi = {10.1145/3194261.3194263},
pdf = {http://myter.be/papers/papoc18.pdf},
keywords = {counters}
}
@inproceedings{Jagadeesan2018eventual,
author = {Jagadeesan, Radha and Riely, James},
title = {Eventual Consistency for {CRDTs}},
booktitle = {21st European Symposium on Programming},
series = {ESOP 2018},
year = {2018},
month = apr,
publisher = {Springer LNCS volume 10801},
pages = {968--995},
doi = {10.1007/978-3-319-89884-1_34},
pdf = {http://fpl.cs.depaul.edu/jriely/papers/2018-esop.pdf},
keywords = {specification, composition}
}
% https://blog.acolyer.org/2016/04/25/delta-state-replicated-data-types/
@article{Almeida2018delta,
author = {Almeida, Paulo S\'{e}rgio and Shoker, Ali and Baquero, Carlos},
title = {Delta state replicated data types},
journal = {Journal of Parallel and Distributed Computing},
volume = {111},
pages = {162--173},
year = {2018},
month = jan,
eprint = {1603.01529},
doi = {10.1016/j.jpdc.2017.08.003},
keywords = {state-based}
}
@inproceedings{Najafzadeh2018filesystem,
author = {Najafzadeh, Mahsa and Shapiro, Marc and Eugster, Patrick},
title = {Co-Design and Verification of an Available File System},
booktitle = {19th International Conference on Verification, Model Checking, and Abstract Interpretation},
series = {VMCAI 2018},
year = {2018},
pages = {358--381},
publisher = {Springer LNCS volume 10747},
month = jan,
doi = {10.1007/978-3-319-73721-8_17},
pdf = {https://pages.lip6.fr/Marc.Shapiro/papers/VMCAI-2018-filesys.pdf},
keywords = {trees}
}
% 2017
@mastersthesis{Enes2017sync,
author = {Enes, Vitor},
title = {Efficient Synchronization of State-based {CRDTs}},
school = {Universidade do Minho},
year = {2017},
month = nov,
url = {https://vitorenes.org/page/other/msc-thesis.pdf},
keywords = {state-based}
}
@article{Gomes2017verifying,
author = {Gomes, Victor B F and Kleppmann, Martin and Mulligan, Dominic P and Beresford, Alastair R},
title = {Verifying strong eventual consistency in distributed systems},
journal = {Proceedings of the ACM on Programming Languages (PACMPL)},
year = {2017},
volume = {1},
number = {OOPSLA},
month = oct,
publisher = {ACM},
doi = {10.1145/3133933},
eprint = {1707.01747},
keywords = {specification, verification}
}
@article{Baquero2017composition,
author = {Baquero, Carlos and Almeida, Paulo S{\'e}rgio and Cunha, Alcino and Ferreira, Carla},
title = {Composition in State-based Replicated Data Types},
journal = {Bulletin of the European Association for Theoretical Computer Science},
year = {2017},
month = oct,
number = {123},
pdf = {http://bulletin.eatcs.org/index.php/beatcs/article/viewFile/507/496},
keywords = {composition, state-based}
}