forked from ept/crdt-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
papers_bib.html
1898 lines (1776 loc) · 71.7 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="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="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="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, systems, OWebSync}
}
</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="Bauwens2020gc"></a><pre>
@inproceedings{<a href="papers.html#Bauwens2020gc">Bauwens2020gc</a>,
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}
}
</pre>
<a name="Yu2020relations"></a><pre>
@inproceedings{<a href="papers.html#Yu2020relations">Yu2020relations</a>,
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}
}
</pre>
<a name="DePorre2020cscript"></a><pre>
@article{<a href="papers.html#DePorre2020cscript">DePorre2020cscript</a>,
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 = {<a href="http://soft.vub.ac.be/Publications/2020/vub-tr-soft-20-04.pdf">http://soft.vub.ac.be/Publications/2020/vub-tr-soft-20-04.pdf</a>},
keywords = {computation, composition, systems, CScript}
}
</pre>
<a name="Weidner2020composing"></a><pre>
@article{<a href="papers.html#Weidner2020composing">Weidner2020composing</a>,
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}
}
</pre>
<a name="Dolan2020undoable"></a><pre>
@inproceedings{<a href="papers.html#Dolan2020undoable">Dolan2020undoable</a>,
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}
}
</pre>
<a name="Blau2020delta"></a><pre>
@mastersthesis{<a href="papers.html#Blau2020delta">Blau2020delta</a>,
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}
}
</pre>
<a name="Kleppmann2020moving"></a><pre>
@inproceedings{<a href="papers.html#Kleppmann2020moving">Kleppmann2020moving</a>,
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}
}
</pre>
<a name="Yu2020causalLengths"></a><pre>
@inproceedings{<a href="papers.html#Yu2020causalLengths">Yu2020causalLengths</a>,
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}
}
</pre>
<a name="Grosch2020AutoCouch"></a><pre>
@inproceedings{<a href="papers.html#Grosch2020AutoCouch">Grosch2020AutoCouch</a>,
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}
}
</pre>
<a name="Grishchenko2020Chronofold"></a><pre>
@inproceedings{<a href="papers.html#Grishchenko2020Chronofold">Grishchenko2020Chronofold</a>,
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}
}
</pre>
<a name="Nicolas2020renaming"></a><pre>
@inproceedings{<a href="papers.html#Nicolas2020renaming">Nicolas2020renaming</a>,
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}
}
</pre>
<a name="vanHardenberg2020PushPin"></a><pre>
@inproceedings{<a href="papers.html#vanHardenberg2020PushPin">vanHardenberg2020PushPin</a>,
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}
}
</pre>
<a name="Bauwens2020Flec"></a><pre>
@inproceedings{<a href="papers.html#Bauwens2020Flec">Bauwens2020Flec</a>,
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}
}
</pre>
<a name="Yu2019undo"></a><pre>
@inproceedings{<a href="papers.html#Yu2019undo">Yu2019undo</a>,
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}
}
</pre>
<a name="Kleppmann2019localfirst"></a><pre>
@inproceedings{<a href="papers.html#Kleppmann2019localfirst">Kleppmann2019localfirst</a>,
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}
}
</pre>
<a name="Kaki2019mergeable"></a><pre>
@article{<a href="papers.html#Kaki2019mergeable">Kaki2019mergeable</a>,
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}
}
</pre>
<a name="Mogk2019faulttolerantRP"></a><pre>
@article{<a href="papers.html#Mogk2019faulttolerantRP">Mogk2019faulttolerantRP</a>,
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}
}
</pre>
<a name="Bauwens2019memory"></a><pre>
@inproceedings{<a href="papers.html#Bauwens2019memory">Bauwens2019memory</a>,
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 = {<a href="http://soft.vub.ac.be/Publications/2019/vub-soft-tr-19-22.pdf">http://soft.vub.ac.be/Publications/2019/vub-soft-tr-19-22.pdf</a>},
keywords = {systems, operation-based, memory management}
}
</pre>
<a name="Kollmann2019Snapdoc"></a><pre>
@article{<a href="papers.html#Kollmann2019Snapdoc">Kollmann2019Snapdoc</a>,
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}
}
</pre>
<a name="DePorre2019order"></a><pre>
@inproceedings{<a href="papers.html#DePorre2019order">DePorre2019order</a>,
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 = {<a href="http://soft.vub.ac.be/Publications/2019/vub-soft-tr-19-09.pdf">http://soft.vub.ac.be/Publications/2019/vub-soft-tr-19-09.pdf</a>},
keywords = {systems, CScript}
}
</pre>
<a name="Enes2019synchronization"></a><pre>
@inproceedings{<a href="papers.html#Enes2019synchronization">Enes2019synchronization</a>,
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}
}
</pre>
<a name="Leijnse2019higherorder"></a><pre>
@inproceedings{<a href="papers.html#Leijnse2019higherorder">Leijnse2019higherorder</a>,
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}
}
</pre>
<a name="Kleppmann2019interleaving"></a><pre>
@inproceedings{<a href="papers.html#Kleppmann2019interleaving">Kleppmann2019interleaving</a>,
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}
}
</pre>
<a name="Mealha2019cloudEdge"></a><pre>
@inproceedings{<a href="papers.html#Mealha2019cloudEdge">Mealha2019cloudEdge</a>,
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}
}
</pre>
<a name="DePorre2019generic"></a><pre>
@inproceedings{<a href="papers.html#DePorre2019generic">DePorre2019generic</a>,
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 = {<a href="http://soft.vub.ac.be/Publications/2019/vub-soft-tr-19-08.pdf">http://soft.vub.ac.be/Publications/2019/vub-soft-tr-19-08.pdf</a>},
keywords = {text-editing, operation-based}
}
</pre>
<a name="Lv2018CAD"></a><pre>
@article{<a href="papers.html#Lv2018CAD">Lv2018CAD</a>,
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}
}
</pre>
<a name="Mogk2018distributedRP"></a><pre>
@inproceedings{<a href="papers.html#Mogk2018distributedRP">Mogk2018distributedRP</a>,
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}
}
</pre>
<a name="Chandramouli2018Faster"></a><pre>
@inproceedings{<a href="papers.html#Chandramouli2018Faster">Chandramouli2018Faster</a>,
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}
}
</pre>
<a name="Preguica2018crdts"></a><pre>
@article{<a href="papers.html#Preguica2018crdts">Preguica2018crdts</a>,
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}
}
</pre>
<a name="Preguica2018encyclopedia"></a><pre>
@incollection{<a href="papers.html#Preguica2018encyclopedia">Preguica2018encyclopedia</a>,
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}
}
</pre>
<a name="Kleppmann2018OpSets"></a><pre>
@article{<a href="papers.html#Kleppmann2018OpSets">Kleppmann2018OpSets</a>,
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}
}
</pre>
<a name="Shapiro2018referential"></a><pre>
@inproceedings{<a href="papers.html#Shapiro2018referential">Shapiro2018referential</a>,
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}
}
</pre>
<a name="Bauwens2018constraining"></a><pre>
@inproceedings{<a href="papers.html#Bauwens2018constraining">Bauwens2018constraining</a>,
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 = {<a href="http://myter.be/papers/papoc18.pdf">http://myter.be/papers/papoc18.pdf</a>},
keywords = {counters}
}
</pre>
<a name="Jagadeesan2018eventual"></a><pre>
@inproceedings{<a href="papers.html#Jagadeesan2018eventual">Jagadeesan2018eventual</a>,
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 = {<a href="http://fpl.cs.depaul.edu/jriely/papers/2018-esop.pdf">http://fpl.cs.depaul.edu/jriely/papers/2018-esop.pdf</a>},
keywords = {specification, composition}
}
</pre>
<a name="Almeida2018delta"></a><pre>
@article{<a href="papers.html#Almeida2018delta">Almeida2018delta</a>,
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}
}
</pre>
<a name="Najafzadeh2018filesystem"></a><pre>
@inproceedings{<a href="papers.html#Najafzadeh2018filesystem">Najafzadeh2018filesystem</a>,
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}
}
</pre>
<a name="Enes2017sync"></a><pre>
@mastersthesis{<a href="papers.html#Enes2017sync">Enes2017sync</a>,
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}
}
</pre>
<a name="Gomes2017verifying"></a><pre>
@article{<a href="papers.html#Gomes2017verifying">Gomes2017verifying</a>,
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}
}
</pre>
<a name="Baquero2017composition"></a><pre>
@article{<a href="papers.html#Baquero2017composition">Baquero2017composition</a>,
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 = {<a href="http://bulletin.eatcs.org/index.php/beatcs/article/viewFile/507/496">http://bulletin.eatcs.org/index.php/beatcs/article/viewFile/507/496</a>},
keywords = {composition, state-based}
}
</pre>
<a name="Baquero2017pure"></a><pre>
@article{<a href="papers.html#Baquero2017pure">Baquero2017pure</a>,
author = {Baquero, Carlos and Almeida, Paulo S{\'e}rgio and Shoker, Ali},
title = {Pure Operation-Based Replicated Data Types},
year = {2017},
eprint = {1710.04469},
month = oct,
url = {https://arxiv.org/abs/1710.04469},
keywords = {operation-based}
}
</pre>
<a name="Yu2017disturbance"></a><pre>
@inproceedings{<a href="papers.html#Yu2017disturbance">Yu2017disturbance</a>,
author = {Yu, Weihai and Oster, G{\'e}rald and Ignat, Claudia-Lavinia},
title = {Handling Disturbance and Awareness of Concurrent Updates in a Collaborative Editor},
booktitle = {14th International Conference on Cooperative Design, Visualization, and Engineering},
series = {CDVE 2017},
year = {2017},
month = sep,
publisher = {Springer LNCS volume 10451},
pages = {39--47},
doi = {10.1007/978-3-319-66805-5_5},
pdf = {https://hal.inria.fr/hal-01652656/document},
keywords = {systems, usability}
}
</pre>
<a name="Kleppmann2017json"></a><pre>
@article{<a href="papers.html#Kleppmann2017json">Kleppmann2017json</a>,
author = {Kleppmann, Martin and Beresford, Alastair R},
title = {A Conflict-Free Replicated {JSON} Datatype},
journal = {IEEE Transactions on Parallel and Distributed Systems},
year = {2017},
volume = {28},
number = {10},
pages = {2733--2746},
month = apr,
publisher = {IEEE},
doi = {10.1109/TPDS.2017.2697382},
eprint = {1608.03960},
keywords = {trees}
}
</pre>
<a name="Jungnickel2017imap"></a><pre>
@inproceedings{<a href="papers.html#Jungnickel2017imap">Jungnickel2017imap</a>,
author = {Jungnickel, Tim and Oldenburg, Lennart},
title = {{Pluto}: The {CRDT}-Driven {IMAP} Server},
booktitle = {3rd International Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2017},
year = 2017,
month = apr,
publisher = {ACM},
articleno = {1},
doi = {10.1145/3064889.3064891},
pdf = {<a href="http://www.redaktion.tu-berlin.de/fileadmin/a34331500/paper/papoc17-jungnickel.pdf">http://www.redaktion.tu-berlin.de/fileadmin/a34331500/paper/papoc17-jungnickel.pdf</a>},
keywords = {systems}
}
</pre>
<a name="Younes2017resettable"></a><pre>
@inproceedings{<a href="papers.html#Younes2017resettable">Younes2017resettable</a>,
author = {Younes, Georges and Almeida, Paulo S\'{e}rgio and Baquero, Carlos},
title = {Compact Resettable Counters through Causal Stability},
booktitle = {3rd International Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2017},
year = {2017},
month = apr,
publisher = {ACM},
articleno = {2},
doi = {10.1145/3064889.3064892},
pdf = {https://haslab.uminho.pt/cbm/files/a3-younes.pdf},
keywords = {counters}
}
</pre>
<a name="Zeller2017Repliss"></a><pre>
@inproceedings{<a href="papers.html#Zeller2017Repliss">Zeller2017Repliss</a>,
author = {Zeller, Peter},
title = {Testing Properties of Weakly Consistent Programs with {Repliss}},
booktitle = {3rd International Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2017},
year = {2017},
month = apr,
publisher = {ACM},
articleno = {3},
doi = {10.1145/3064889.3064893},
pdf = {https://dl.acm.org/authorize?N37605},
keywords = {testing, verification}
}
</pre>
<a name="Enes2017borrowing"></a><pre>
@inproceedings{<a href="papers.html#Enes2017borrowing">Enes2017borrowing</a>,
author = {Enes, Vitor and Baquero, Carlos and Almeida, Paulo S\'{e}rgio and Leit\~{a}o, Jo\~{a}o},
title = {Borrowing an Identity for a Distributed Counter: Work in Progress Report},
booktitle = {3rd International Workshop on Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2017},
year = {2017},
month = apr,
publisher = {ACM},
doi = {10.1145/3064889.3064894},
pdf = {https://haslab.uminho.pt/sites/default/files/cbm/files/a5-enes.pdf},
keywords = {counters}
}
</pre>
<a name="vanderLinde2017Legion"></a><pre>
@inproceedings{<a href="papers.html#vanderLinde2017Legion">vanderLinde2017Legion</a>,
author = {van der Linde, Albert and Fouto, Pedro and Leit{\~a}o, Jo{\~a}o and Pregui{\c c}a, Nuno and Casti{\~n}eira, Santiago and Bieniusa, Annette},
title = {{Legion}: Enriching Internet Services with Peer-to-Peer Interactions},
booktitle = {26th International Conference on World Wide Web},
series = {WWW 2017},
year = {2017},
month = apr,
publisher = {ACM},
pages = {283--292},
doi = {10.1145/3038912.3052673},
pdf = {<a href="http://novasys.di.fct.unl.pt/~alinde/publications/fp0964-vanderlinde.pdf">http://novasys.di.fct.unl.pt/~alinde/publications/fp0964-vanderlinde.pdf</a>},
keywords = {systems, Legion}
}
</pre>
<a name="Briot2016group"></a><pre>
@inproceedings{<a href="papers.html#Briot2016group">Briot2016group</a>,
author = {Briot, Lo{\"\i}ck and Urso, Pascal and Shapiro, Marc},
title = {High Responsiveness for Group Editing {CRDTs}},
booktitle = {19th International Conference on Supporting Group Work},
series = {GROUP 2016},
year = {2016},
pages = {51--60},
publisher = {ACM},
month = nov,
doi = {10.1145/2957276.2957300},
pdf = {https://hal.inria.fr/hal-01343941/document},
keywords = {text-editing, RGASplit}
}
</pre>
<a name="Nicolaescu2016YATA"></a><pre>
@inproceedings{<a href="papers.html#Nicolaescu2016YATA">Nicolaescu2016YATA</a>,
author = {Nicolaescu, Petru and Jahns, Kevin and Derntl, Michael and Klamma, Ralf},
title = {Near Real-Time Peer-to-Peer Shared Editing on Extensible Data Types},
booktitle = {19th International Conference on Supporting Group Work},
series = {GROUP 2016},
year = {2016},
pages = {39--49},
publisher = {ACM},
month = nov,
doi = {10.1145/2957276.2957310},
pdf = {https://www.researchgate.net/publication/310212186_Near_Real-Time_Peer-to-Peer_Shared_Editing_on_Extensible_Data_Types},
keywords = {text-editing, YATA, Yjs}
}
</pre>
<a name="Lv2016stringbased"></a><pre>
@inproceedings{<a href="papers.html#Lv2016stringbased">Lv2016stringbased</a>,
author = {Lv, Xiao and He, Fazhi and Cai, Weiwei and Cheng, Yuan},
title = {An efficient collaborative editing algorithm supporting string-based operations},
booktitle = {20th IEEE International Conference on Computer Supported Cooperative Work in Design},
series = {CSCWD 2016},
year = {2016},
pages = {45--50},
publisher = {IEEE},
month = sep,
doi = {10.1109/CSCWD.2016.7565961},
keywords = {text-editing}
}
</pre>
<a name="Attiya2016text"></a><pre>
@inproceedings{<a href="papers.html#Attiya2016text">Attiya2016text</a>,
author = {Attiya, Hagit and Burckhardt, Sebastian and Gotsman, Alexey and Morrison, Adam and Yang, Hongseok and Zawirski, Marek},
title = {Specification and Complexity of Collaborative Text Editing},
booktitle = {ACM Symposium on Principles of Distributed Computing},
series = {PODC 2016},
year = {2016},
month = jul,
publisher = {ACM},
pages = {259--268},
doi = {10.1145/2933057.2933090},
pdf = {<a href="http://www.cs.ox.ac.uk/people/hongseok.yang/paper/podc16-full.pdf">http://www.cs.ox.ac.uk/people/hongseok.yang/paper/podc16-full.pdf</a>},
keywords = {text-editing, specification, verification}
}
</pre>
<a name="Akkoorath2016Cure"></a><pre>
@inproceedings{<a href="papers.html#Akkoorath2016Cure">Akkoorath2016Cure</a>,
author = {Akkoorath, Deepthi Devaki and Tomsic, Alejandro Z. and Bravo, Manuel and Li, Zhongmiao and Crain, Tyler and Bieniusa, Annette and Pregui{\c c}a, Nuno and Shapiro, Marc},
title = {{Cure}: Strong Semantics Meets High Availability and Low Latency},
booktitle = {36th IEEE International Conference on Distributed Computing Systems},
series = {ICDCS 2016},
year = {2016},
month = jun,
publisher = {IEEE},
pages = {405--414},
doi = {10.1109/ICDCS.2016.98},
pdf = {https://pages.lip6.fr/Marc.Shapiro/papers/Cure-final-ICDCS16.pdf},
keywords = {systems, Cure, Antidote}
}
</pre>
<a name="Zhao2016byzantine"></a><pre>
@inproceedings{<a href="papers.html#Zhao2016byzantine">Zhao2016byzantine</a>,
author = {Zhao, Wenbing and Babi, Mamdouh and Yang, William and Luo, Xiong and Zhu, Yueqin and Yang, Jack and Luo, Chaomin and Yang, Mary},
title = {Byzantine Fault Tolerance for Collaborative Editing with Commutative Operations},
booktitle = {IEEE International Conference on Electro Information Technology},
series = {EIT 2016},
year = {2016},
month = may,
pages = {246--251},
doi = {10.1109/EIT.2016.7535248},
publisher = {IEEE},
keywords = {byzantine}
}
</pre>
<a name="Brown2016bigsets"></a><pre>
@inproceedings{<a href="papers.html#Brown2016bigsets">Brown2016bigsets</a>,
author = {Brown, Russell and Lakhani, Zeeshan and Place, Paul},
title = {Big(Ger) Sets: Decomposed Delta {CRDT} Sets in {Riak}},
booktitle = {2nd Workshop on the Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2016},
year = {2016},
month = apr,
articleno = {5},
publisher = {ACM},
doi = {10.1145/2911151.2911156},
eprint = {1605.06424},
keywords = {set-crdt, systems, composition}
}
</pre>
<a name="Zawirski2016register"></a><pre>
@inproceedings{<a href="papers.html#Zawirski2016register">Zawirski2016register</a>,
author = {Zawirski, Marek and Baquero, Carlos and Bieniusa, Annette and Pregui\c{c}a, Nuno and Shapiro, Marc},
title = {Eventually Consistent Register Revisited},
booktitle = {2nd Workshop on the Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2016},
year = {2016},
month = apr,
articleno = {9},
publisher = {ACM},
doi = {10.1145/2911151.2911157},
url = {https://core.ac.uk/download/pdf/154274593.pdf},
eprint = {1511.05010},
keywords = {state-based}
}
</pre>
<a name="Baquero2016embedded"></a><pre>
@inproceedings{<a href="papers.html#Baquero2016embedded">Baquero2016embedded</a>,
author = {Baquero, Carlos and Almeida, Paulo S{\'e}rgio and Lerche, Carl},
title = {The problem with embedded {CRDT} counters and a solution},
booktitle = {2nd Workshop on the Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2016},
year = {2016},
month = apr,
articleno = {10},
publisher = {ACM},
doi = {10.1145/2911151.2911159},
url = {<a href="http://haslab.uminho.pt/cbm/files/abstractcounterpapocfinal.pdf">http://haslab.uminho.pt/cbm/files/abstractcounterpapocfinal.pdf</a>},
keywords = {composition, counters}
}
</pre>
<a name="Weilbach2016cdvcs"></a><pre>
@inproceedings{<a href="papers.html#Weilbach2016cdvcs">Weilbach2016cdvcs</a>,
author = {Weilbach, Christian and K\"{u}hne, Konrad and Bieniusa, Annette},
title = {Decoupling Conflict Resolution with {CDVCS}},
booktitle = {2nd Workshop on the Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2016},
year = {2016},
month = apr,
articleno = {11},
publisher = {ACM},
doi = {10.1145/2911151.2911154},
keywords = {systems, Replikativ}
}
</pre>
<a name="vanderLinde06delta"></a><pre>
@inproceedings{<a href="papers.html#vanderLinde06delta">vanderLinde06delta</a>,
author = {van der Linde, Albert and Leit\~{a}o, Jo\~{a}o and Pregui\c{c}a, Nuno},
title = {{$\Delta$-CRDTs}: Making {$\delta$-CRDTs} Delta-based},
booktitle = {2nd Workshop on the Principles and Practice of Consistency for Distributed Data},
series = {PaPoC 2016},
year = {2016},
month = apr,
articleno = {12},
publisher = {ACM},