forked from ept/crdt-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
papers.html
2116 lines (1763 loc) · 67.2 KB
/
papers.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
---
layout: page
title: CRDT Papers
---
<!-- This document was automatically generated with bibtex2html 1.99
(see http://www.lri.fr/~filliatr/bibtex2html/),
with the following command:
bibtex2html --dl --nodoc --title "CRDT Papers" papers.bib -->
<h1>CRDT Papers</h1>
<p>This page contains a comprehensive list of research publications on CRDTs.
The data is available <a href="papers_bib.html">in BibTeX format</a>.
If you have anything to add or correct, please
<a href="https://github.com/ept/crdt-website/edit/gh-pages/papers.bib">edit the file on GitHub</a>
and send us a pull request.</p>
<p><strong>Select checkboxes to filter papers by topic:</strong></p>
<form id="papers-filter">
<input type="checkbox" id="introduction" name="introduction">
<label for="introduction">Introductions to CRDTs</label><br>
<input type="checkbox" id="systems" name="systems">
<label for="systems">Systems and apps using CRDTs</label><br>
<input type="checkbox" id="operation-based" name="operation-based">
<label for="operation-based">Operation-based CRDTs</label><br>
<input type="checkbox" id="state-based" name="state-based">
<label for="state-based">State-based and Delta CRDTs</label><br>
<input type="checkbox" id="counters" name="counters">
<label for="counters">Counter CRDTs</label><br>
<input type="checkbox" id="text-editing" name="text-editing">
<label for="text-editing">Text editing/sequence CRDTs</label><br>
<input type="checkbox" id="undo" name="undo">
<label for="undo">Undoing operations</label><br>
<input type="checkbox" id="trees" name="trees">
<label for="trees">CRDTs for trees</label><br>
<input type="checkbox" id="computation" name="computation">
<label for="computation">Computation/programming</label><br>
<input type="checkbox" id="composition" name="composition">
<label for="composition">Composing CRDTs</label><br>
<input type="checkbox" id="verification" name="verification">
<label for="verification">Specification and verification</label><br>
<input type="checkbox" id="crdt-related" name="crdt-related">
<label for="crdt-related">Close relatives of CRDTs</label><br>
</form>
<script>
const checkboxes = document.querySelectorAll('form#papers-filter input[type="checkbox"]')
for (let checkbox of checkboxes) {
checkbox.addEventListener('change', () => {
let selected = []
for (let cb of checkboxes) {
if (cb.checked) selected.push(cb.name)
}
const regex = new RegExp(selected.join('|'))
for (let element of document.querySelectorAll('div.td-content > dl > dd')) {
let keywords = element.querySelector('blockquote')
let previous = element
do {
previous = previous.previousSibling
} while (previous.nodeType !== Node.ELEMENT_NODE || previous.tagName !== 'DT')
if (selected.length === 0 || (keywords && regex.test(keywords.innerText))) {
previous.className = 'selected'
} else {
previous.className = 'unselected'
}
}
})
}
</script>
<h2>Paper List</h2>
<p>(In reverse chronological order)</p>
<dl>
<dt>
[<a name="Bauwens2020gc">1</a>]
</dt>
<dd>
Jim Bauwens and Elisa Gonzalez Boix.
From causality to stability: Understanding and reducing meta-data in
CRDTs.
In <em>17th International Conference on Managed Programming
Languages and Runtimes</em>, MPLR 2020, pages 3--14. ACM, November 2020.
[ <a href="papers_bib.html#Bauwens2020gc">bib</a> |
<a href="http://dx.doi.org/10.1145/3426182.3426183">DOI</a> |
<a href="https://soft.vub.ac.be/~jibauwen/publications/mplr20-from-causality-to-stability-jimbauwens.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: operation-based, systems, Flec
</font></blockquote>
</dd>
<dt>
[<a name="DePorre2020cscript">2</a>]
</dt>
<dd>
Kevin De Porre, Florian Myter, Christophe Scholliers, and Elisa Gonzalez Boix.
CScript: A distributed programming language for building
mixed-consistency applications.
<em>Journal of Parallel and Distributed Computing volume 144</em>, pages
109--123, October 2020.
[ <a href="papers_bib.html#DePorre2020cscript">bib</a> |
<a href="http://dx.doi.org/10.1016/j.jpdc.2020.05.010">DOI</a> |
<a href="http://soft.vub.ac.be/Publications/2020/vub-tr-soft-20-04.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: computation, composition, systems, CScript
</font></blockquote>
</dd>
<dt>
[<a name="Weidner2020composing">3</a>]
</dt>
<dd>
Matthew Weidner, Heather Miller, and Christopher Meiklejohn.
Composing and decomposing op-based CRDTs with semidirect products.
August 2020.
[ <a href="papers_bib.html#Weidner2020composing">bib</a> |
<a href="http://dx.doi.org/10.1145/3408976">DOI</a> |
<a href="http://arxiv.org/abs/2004.04303">arXiv</a> |
<a href="https://dl.acm.org/doi/pdf/10.1145/3408976">http</a> ]
<blockquote><font size="-1">
Keywords: composition, operation-based
</font></blockquote>
</dd>
<dt>
[<a name="Dolan2020undoable">4</a>]
</dt>
<dd>
Stephen Dolan.
Brief announcement: The only undoable CRDTs are counters.
In <em>39th Symposium on Principles of Distributed Computing</em>, PODC
2020, page 57–58. ACM, August 2020.
[ <a href="papers_bib.html#Dolan2020undoable">bib</a> |
<a href="http://dx.doi.org/10.1145/3382734.3405749">DOI</a> |
<a href="http://arxiv.org/abs/2006.10494">arXiv</a> ]
<blockquote><font size="-1">
Keywords: set-crdt, counters, undo
</font></blockquote>
</dd>
<dt>
[<a name="Blau2020delta">5</a>]
</dt>
<dd>
Taylor Blau.
Verifying strong eventual consistency in δ-crdts.
Bachelor's thesis, University of Washington, June 2020.
[ <a href="papers_bib.html#Blau2020delta">bib</a> |
<a href="http://arxiv.org/abs/2006.09823">arXiv</a> ]
<blockquote><font size="-1">
Keywords: state-based, verification
</font></blockquote>
</dd>
<dt>
[<a name="Kleppmann2020moving">6</a>]
</dt>
<dd>
Martin Kleppmann.
Moving elements in list CRDTs.
In <em>7th Workshop on Principles and Practice of Consistency for
Distributed Data</em>, PaPoC 2020. ACM, April 2020.
[ <a href="papers_bib.html#Kleppmann2020moving">bib</a> |
<a href="http://dx.doi.org/10.1145/3380787.3393677">DOI</a> |
<a href="https://martin.kleppmann.com/papers/list-move-papoc20.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: text-editing
</font></blockquote>
</dd>
<dt>
[<a name="Yu2020causalLengths">7</a>]
</dt>
<dd>
Weihai Yu and Sigbjørn Rostad.
A low-cost set CRDT based on causal lengths.
In <em>7th Workshop on Principles and Practice of Consistency for
Distributed Data</em>, PaPoC 2020. ACM, April 2020.
[ <a href="papers_bib.html#Yu2020causalLengths">bib</a> |
<a href="http://dx.doi.org/10.1145/3380787.3393678">DOI</a> ]
<blockquote><font size="-1">
Keywords: set-crdt
</font></blockquote>
</dd>
<dt>
[<a name="Grosch2020AutoCouch">8</a>]
</dt>
<dd>
Pascal Grosch, Roman Krafft, Marcel Wölki, and Annette Bieniusa.
AutoCouch: A JSON CRDT framework.
In <em>7th Workshop on Principles and Practice of Consistency for
Distributed Data</em>, PaPoC 2020. ACM, April 2020.
[ <a href="papers_bib.html#Grosch2020AutoCouch">bib</a> |
<a href="http://dx.doi.org/10.1145/3380787.3393679">DOI</a> ]
<blockquote><font size="-1">
Keywords: systems, Automerge, AutoCouch
</font></blockquote>
</dd>
<dt>
[<a name="Grishchenko2020Chronofold">9</a>]
</dt>
<dd>
Victor Grishchenko and Mikhail Patrakeev.
Chronofold: A data structure for versioned text.
In <em>7th Workshop on Principles and Practice of Consistency for
Distributed Data</em>, PaPoC 2020. ACM, April 2020.
[ <a href="papers_bib.html#Grishchenko2020Chronofold">bib</a> |
<a href="http://dx.doi.org/10.1145/3380787.3393680">DOI</a> |
<a href="http://arxiv.org/abs/2002.09511">arXiv</a> ]
<blockquote><font size="-1">
Keywords: text-editing, Chronofold
</font></blockquote>
</dd>
<dt>
[<a name="Nicolas2020renaming">10</a>]
</dt>
<dd>
Matthieu Nicolas, Gérald Oster, and Olivier Perrin.
Efficient renaming in sequence CRDTs.
In <em>7th Workshop on Principles and Practice of Consistency for
Distributed Data</em>, PaPoC 2020. ACM, April 2020.
[ <a href="papers_bib.html#Nicolas2020renaming">bib</a> |
<a href="http://dx.doi.org/10.1145/3380787.3393682">DOI</a> |
<a href="https://hal.inria.fr/hal-02526724/document">http</a> ]
<blockquote><font size="-1">
Keywords: text-editing, LogootSplit
</font></blockquote>
</dd>
<dt>
[<a name="vanHardenberg2020PushPin">11</a>]
</dt>
<dd>
Peter van Hardenberg and Martin Kleppmann.
PushPin: Towards production-quality peer-to-peer collaboration.
In <em>7th Workshop on Principles and Practice of Consistency for
Distributed Data</em>, PaPoC 2020. ACM, April 2020.
[ <a href="papers_bib.html#vanHardenberg2020PushPin">bib</a> |
<a href="http://dx.doi.org/10.1145/3380787.3393683">DOI</a> |
<a href="https://martin.kleppmann.com/papers/pushpin-papoc20.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: systems, usability, PushPin
</font></blockquote>
</dd>
<dt>
[<a name="Bauwens2020Flec">12</a>]
</dt>
<dd>
Jim Bauwens and Elisa Gonzalez Boix.
Flec: A versatile programming framework for eventually consistent
systems.
In <em>7th Workshop on Principles and Practice of Consistency for
Distributed Data</em>, PaPoC 2020. ACM, April 2020.
[ <a href="papers_bib.html#Bauwens2020Flec">bib</a> |
<a href="http://dx.doi.org/10.1145/3380787.3393685">DOI</a> ]
<blockquote><font size="-1">
Keywords: systems, Flec
</font></blockquote>
</dd>
<dt>
[<a name="Yu2019undo">13</a>]
</dt>
<dd>
Weihai Yu, Victorien Elvinger, and Claudia-Lavinia Ignat.
A generic undo support for state-based CRDTs.
In <em>23rd International Conference on Principles of Distributed
Systems</em>, OPODIS 2019. Dagstuhl LIPIcs, November 2019.
[ <a href="papers_bib.html#Yu2019undo">bib</a> |
<a href="http://dx.doi.org/10.4230/LIPIcs.OPODIS.2019.14">DOI</a> |
<a href="https://drops.dagstuhl.de/opus/volltexte/2020/11800/pdf/LIPIcs-OPODIS-2019-14.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: state-based, undo
</font></blockquote>
</dd>
<dt>
[<a name="Kleppmann2019localfirst">14</a>]
</dt>
<dd>
Martin Kleppmann, Adam Wiggins, Peter van Hardenberg, and Mark McGranaghan.
Local-first software: You own your data, in spite of the cloud.
In <em>ACM SIGPLAN International Symposium on New Ideas, New
Paradigms, and Reflections on Programming and Software</em>, Onward! 2019, pages
154--178. ACM, October 2019.
[ <a href="papers_bib.html#Kleppmann2019localfirst">bib</a> |
<a href="http://dx.doi.org/10.1145/3359591.3359737">DOI</a> |
<a href="https://martin.kleppmann.com/papers/local-first.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: systems, usability
</font></blockquote>
</dd>
<dt>
[<a name="Kaki2019mergeable">15</a>]
</dt>
<dd>
Gowtham Kaki, Swarn Priya, KC Sivaramakrishnan, and Suresh Jagannathan.
Mergeable replicated data types.
<em>Proceedings of the ACM on Programming Languages (PACMPL)</em>,
3(OOPSLA), October 2019.
[ <a href="papers_bib.html#Kaki2019mergeable">bib</a> |
<a href="http://dx.doi.org/10.1145/3360580">DOI</a> |
<a href="https://gowthamk.github.io/docs/mrdt.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: crdt-related
</font></blockquote>
</dd>
<dt>
[<a name="Mogk2019faulttolerantRP">16</a>]
</dt>
<dd>
Ragnar Mogk, Joscha Drechsler, Guido Salvaneschi, and Mira Mezini.
A fault-tolerant programming model for distributed interactive
applications.
<em>Proceedings of the ACM on Programming Languages (PACMPL)</em>,
3(OOPSLA), October 2019.
[ <a href="papers_bib.html#Mogk2019faulttolerantRP">bib</a> |
<a href="http://dx.doi.org/10.1145/3360570">DOI</a> ]
<blockquote><font size="-1">
Keywords: systems
</font></blockquote>
</dd>
<dt>
[<a name="Bauwens2019memory">17</a>]
</dt>
<dd>
Jim Bauwens and Elisa Gonzalez Boix.
Memory efficient CRDTs in dynamic environments.
In <em>11th ACM SIGPLAN International Workshop on Virtual Machines
and Intermediate Languages</em>, VMIL 2019, page 48–57. ACM, October 2019.
[ <a href="papers_bib.html#Bauwens2019memory">bib</a> |
<a href="http://dx.doi.org/10.1145/3358504.3361231">DOI</a> |
<a href="http://soft.vub.ac.be/Publications/2019/vub-soft-tr-19-22.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: systems, operation-based, memory management
</font></blockquote>
</dd>
<dt>
[<a name="Kollmann2019Snapdoc">18</a>]
</dt>
<dd>
Stephan A Kollmann, Martin Kleppmann, and Alastair R Beresford.
Snapdoc: Authenticated snapshots with history privacy in
peer-to-peer collaborative editing.
<em>Proceedings on Privacy Enhancing Technologies (PoPETS)</em>,
2019(3):210--232, July 2019.
[ <a href="papers_bib.html#Kollmann2019Snapdoc">bib</a> |
<a href="http://dx.doi.org/10.2478/popets-2019-0044">DOI</a> |
<a href="https://www.petsymposium.org/2019/files/papers/issue3/popets-2019-0044.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: security
</font></blockquote>
</dd>
<dt>
[<a name="DePorre2019order">19</a>]
</dt>
<dd>
Kevin De Porre, Florian Myter, Christophe De Troyer, Christophe Scholliers,
Wolfgang De Meuter, and Elisa Gonzalez Boix.
Putting order in strong eventual consistency.
In <em>19th IFIP WG 6.1 International Conference on Distributed
Applications and Interoperable Systems</em>, DAIS 2019, pages 36--56. Springer
LNCS volume 11534, June 2019.
[ <a href="papers_bib.html#DePorre2019order">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-030-22496-7_3">DOI</a> |
<a href="http://soft.vub.ac.be/Publications/2019/vub-soft-tr-19-09.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: systems, CScript
</font></blockquote>
</dd>
<dt>
[<a name="Enes2019synchronization">20</a>]
</dt>
<dd>
Vitor Enes, Paulo Sérgio Almeida, Carlos Baquero, and João Leitão.
Efficient synchronization of state-based CRDTs.
In <em>35th IEEE International Conference on Data Engineering</em>, ICDE
2019, pages 148--159, April 2019.
[ <a href="papers_bib.html#Enes2019synchronization">bib</a> |
<a href="http://dx.doi.org/10.1109/ICDE.2019.00022">DOI</a> |
<a href="http://arxiv.org/abs/1803.02750">arXiv</a> ]
<blockquote><font size="-1">
Keywords: state-based
</font></blockquote>
</dd>
<dt>
[<a name="Leijnse2019higherorder">21</a>]
</dt>
<dd>
Adriaan Leijnse, Paulo Sérgio Almeida, and Carlos Baquero.
Higher-order patterns in replicated data types.
In <em>6th Workshop on Principles and Practice of Consistency for
Distributed Data</em>, PaPoC 2019. ACM, March 2019.
[ <a href="papers_bib.html#Leijnse2019higherorder">bib</a> |
<a href="http://dx.doi.org/10.1145/3301419.3323971">DOI</a> |
<a href="https://repositorio.inesctec.pt/bitstream/123456789/10536/1/P-00Q-WJM.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: composition
</font></blockquote>
</dd>
<dt>
[<a name="Kleppmann2019interleaving">22</a>]
</dt>
<dd>
Martin Kleppmann, Victor B. F. Gomes, Dominic P. Mulligan, and Alastair R.
Beresford.
Interleaving anomalies in collaborative text editors.
In <em>6th Workshop on Principles and Practice of Consistency for
Distributed Data</em>, PaPoC 2019. ACM, March 2019.
[ <a href="papers_bib.html#Kleppmann2019interleaving">bib</a> |
<a href="http://dx.doi.org/10.1145/3301419.3323972">DOI</a> |
<a href="https://martin.kleppmann.com/papers/interleaving-papoc19.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: text-editing
</font></blockquote>
</dd>
<dt>
[<a name="Mealha2019cloudEdge">23</a>]
</dt>
<dd>
David Mealha, Nuno Preguiça, Maria Cecilia Gomes, and João Leitão.
Data replication on the cloud/edge.
In <em>6th Workshop on Principles and Practice of Consistency for
Distributed Data</em>, PaPoC 2019. ACM, March 2019.
[ <a href="papers_bib.html#Mealha2019cloudEdge">bib</a> |
<a href="http://dx.doi.org/10.1145/3301419.3323973">DOI</a> ]
<blockquote><font size="-1">
Keywords: systems
</font></blockquote>
</dd>
<dt>
[<a name="DePorre2019generic">24</a>]
</dt>
<dd>
Kevin De Porre, Florian Myter, Christophe De Troyer, Christophe Scholliers,
Wolfgang De Meuter, and Elisa Gonzalez Boix.
A generic replicated data type for strong eventual consistency.
In <em>6th Workshop on Principles and Practice of Consistency for
Distributed Data</em>, PaPoC 2019. ACM, March 2019.
[ <a href="papers_bib.html#DePorre2019generic">bib</a> |
<a href="http://dx.doi.org/10.1145/3301419.3323974">DOI</a> |
<a href="http://soft.vub.ac.be/Publications/2019/vub-soft-tr-19-08.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: text-editing, operation-based
</font></blockquote>
</dd>
<dt>
[<a name="Lv2018CAD">25</a>]
</dt>
<dd>
Xiao Lv, Fazhi He, Yuan Cheng, and Yiqi Wu.
A novel CRDT-based synchronization method for real-time
collaborative CAD systems.
<em>Advanced Engineering Informatics</em>, 38:381--391, August 2018.
[ <a href="papers_bib.html#Lv2018CAD">bib</a> |
<a href="http://dx.doi.org/10.1016/j.aei.2018.08.008">DOI</a> ]
<blockquote><font size="-1">
Keywords: systems
</font></blockquote>
</dd>
<dt>
[<a name="Mogk2018distributedRP">26</a>]
</dt>
<dd>
Ragnar Mogk, Lars Baumgärtner, Guido Salvaneschi, Bernd Freisleben, and
Mira Mezini.
Fault-tolerant distributed reactive programming.
In <em>32nd European Conference on Object-Oriented Programming</em>,
volume 109 of <em>ECOOP 2018</em>. Schloss Dagstuhl--Leibniz-Zentrum fuer
Informatik, July 2018.
[ <a href="papers_bib.html#Mogk2018distributedRP">bib</a> |
<a href="http://dx.doi.org/10.4230/LIPIcs.ECOOP.2018.1">DOI</a> ]
<blockquote><font size="-1">
Keywords: systems
</font></blockquote>
</dd>
<dt>
[<a name="Chandramouli2018Faster">27</a>]
</dt>
<dd>
Badrish Chandramouli, Guna Prasaad, Donald Kossmann, Justin Levandoski, James
Hunter, and Mike Barnett.
FASTER: A concurrent key-value store with in-place updates.
In <em>International Conference on Management of Data</em>, SIGMOD 2018,
pages 275--290. ACM, June 2018.
[ <a href="papers_bib.html#Chandramouli2018Faster">bib</a> |
<a href="http://dx.doi.org/10.1145/3183713.3196898">DOI</a> |
<a href="https://www.microsoft.com/en-us/research/uploads/prod/2018/03/faster-sigmod18.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: systems
</font></blockquote>
</dd>
<dt>
[<a name="Preguica2018crdts">28</a>]
</dt>
<dd>
Nuno Preguiça.
Conflict-free replicated data types: An overview.
June 2018.
[ <a href="papers_bib.html#Preguica2018crdts">bib</a> |
<a href="http://arxiv.org/abs/1806.10254">arXiv</a> |
<a href="https://arxiv.org/abs/1806.10254">http</a> ]
<blockquote><font size="-1">
Keywords: introduction
</font></blockquote>
</dd>
<dt>
[<a name="Preguica2018encyclopedia">29</a>]
</dt>
<dd>
Nuno Preguiça, Carlos Baquero, and Marc Shapiro.
Conflict-free replicated data types (CRDTs).
In <em>Encyclopedia of Big Data Technologies</em>. Springer, May 2018.
[ <a href="papers_bib.html#Preguica2018encyclopedia">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-319-63962-8_185-1">DOI</a> |
<a href="http://arxiv.org/abs/1805.06358">arXiv</a> ]
<blockquote><font size="-1">
Keywords: introduction
</font></blockquote>
</dd>
<dt>
[<a name="Kleppmann2018OpSets">30</a>]
</dt>
<dd>
Martin Kleppmann, Victor B F Gomes, Dominic P Mulligan, and Alastair R
Beresford.
OpSets: Sequential specifications for replicated datatypes
(extended version).
May 2018.
[ <a href="papers_bib.html#Kleppmann2018OpSets">bib</a> |
<a href="http://arxiv.org/abs/1805.04263">arXiv</a> |
<a href="https://arxiv.org/abs/1805.04263">http</a> ]
<blockquote><font size="-1">
Keywords: specification, verification
</font></blockquote>
</dd>
<dt>
[<a name="Shapiro2018referential">31</a>]
</dt>
<dd>
Marc Shapiro, Annette Bieniusa, Peter Zeller, and Gustavo Petri.
Ensuring referential integrity under causal consistency.
In <em>5th Workshop on the Principles and Practice of Consistency
for Distributed Data</em>, PaPoC 2018. ACM, April 2018.
[ <a href="papers_bib.html#Shapiro2018referential">bib</a> |
<a href="http://dx.doi.org/10.1145/3194261.3194262">DOI</a> |
<a href="https://pages.lip6.fr/Marc.Shapiro/papers/causal-refs-papoc-2018-04.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: causal-consistency
</font></blockquote>
</dd>
<dt>
[<a name="Bauwens2018constraining">32</a>]
</dt>
<dd>
Jim Bauwens, Florian Myter, and Elisa Gonzalez Boix.
Constraining the eventual in eventual consistency.
In <em>5th Workshop on the Principles and Practice of Consistency
for Distributed Data</em>, PaPoC 2018. ACM, April 2018.
[ <a href="papers_bib.html#Bauwens2018constraining">bib</a> |
<a href="http://dx.doi.org/10.1145/3194261.3194263">DOI</a> |
<a href="http://myter.be/papers/papoc18.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: counters
</font></blockquote>
</dd>
<dt>
[<a name="Jagadeesan2018eventual">33</a>]
</dt>
<dd>
Radha Jagadeesan and James Riely.
Eventual consistency for CRDTs.
In <em>21st European Symposium on Programming</em>, ESOP 2018, pages
968--995. Springer LNCS volume 10801, April 2018.
[ <a href="papers_bib.html#Jagadeesan2018eventual">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-319-89884-1_34">DOI</a> |
<a href="http://fpl.cs.depaul.edu/jriely/papers/2018-esop.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: specification, composition
</font></blockquote>
</dd>
<dt>
[<a name="Almeida2018delta">34</a>]
</dt>
<dd>
Paulo Sérgio Almeida, Ali Shoker, and Carlos Baquero.
Delta state replicated data types.
<em>Journal of Parallel and Distributed Computing</em>, 111:162--173,
January 2018.
[ <a href="papers_bib.html#Almeida2018delta">bib</a> |
<a href="http://dx.doi.org/10.1016/j.jpdc.2017.08.003">DOI</a> |
<a href="http://arxiv.org/abs/1603.01529">arXiv</a> ]
<blockquote><font size="-1">
Keywords: state-based
</font></blockquote>
</dd>
<dt>
[<a name="Najafzadeh2018filesystem">35</a>]
</dt>
<dd>
Mahsa Najafzadeh, Marc Shapiro, and Patrick Eugster.
Co-design and verification of an available file system.
In <em>19th International Conference on Verification, Model
Checking, and Abstract Interpretation</em>, VMCAI 2018, pages 358--381. Springer
LNCS volume 10747, January 2018.
[ <a href="papers_bib.html#Najafzadeh2018filesystem">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-319-73721-8_17">DOI</a> |
<a href="https://pages.lip6.fr/Marc.Shapiro/papers/VMCAI-2018-filesys.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: trees
</font></blockquote>
</dd>
<dt>
[<a name="Enes2017sync">36</a>]
</dt>
<dd>
Vitor Enes.
Efficient synchronization of state-based CRDTs.
Master's thesis, Universidade do Minho, November 2017.
[ <a href="papers_bib.html#Enes2017sync">bib</a> |
<a href="https://vitorenes.org/page/other/msc-thesis.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: state-based
</font></blockquote>
</dd>
<dt>
[<a name="Gomes2017verifying">37</a>]
</dt>
<dd>
Victor B F Gomes, Martin Kleppmann, Dominic P Mulligan, and Alastair R
Beresford.
Verifying strong eventual consistency in distributed systems.
<em>Proceedings of the ACM on Programming Languages (PACMPL)</em>,
1(OOPSLA), October 2017.
[ <a href="papers_bib.html#Gomes2017verifying">bib</a> |
<a href="http://dx.doi.org/10.1145/3133933">DOI</a> |
<a href="http://arxiv.org/abs/1707.01747">arXiv</a> ]
<blockquote><font size="-1">
Keywords: specification, verification
</font></blockquote>
</dd>
<dt>
[<a name="Baquero2017composition">38</a>]
</dt>
<dd>
Carlos Baquero, Paulo Sérgio Almeida, Alcino Cunha, and Carla Ferreira.
Composition in state-based replicated data types.
<em>Bulletin of the European Association for Theoretical Computer
Science</em>, (123), October 2017.
[ <a href="papers_bib.html#Baquero2017composition">bib</a> |
<a href="http://bulletin.eatcs.org/index.php/beatcs/article/viewFile/507/496">http</a> ]
<blockquote><font size="-1">
Keywords: composition, state-based
</font></blockquote>
</dd>
<dt>
[<a name="Baquero2017pure">39</a>]
</dt>
<dd>
Carlos Baquero, Paulo Sérgio Almeida, and Ali Shoker.
Pure operation-based replicated data types.
October 2017.
[ <a href="papers_bib.html#Baquero2017pure">bib</a> |
<a href="http://arxiv.org/abs/1710.04469">arXiv</a> |
<a href="https://arxiv.org/abs/1710.04469">http</a> ]
<blockquote><font size="-1">
Keywords: operation-based
</font></blockquote>
</dd>
<dt>
[<a name="Yu2017disturbance">40</a>]
</dt>
<dd>
Weihai Yu, Gérald Oster, and Claudia-Lavinia Ignat.
Handling disturbance and awareness of concurrent updates in a
collaborative editor.
In <em>14th International Conference on Cooperative Design,
Visualization, and Engineering</em>, CDVE 2017, pages 39--47. Springer LNCS
volume 10451, September 2017.
[ <a href="papers_bib.html#Yu2017disturbance">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-319-66805-5_5">DOI</a> |
<a href="https://hal.inria.fr/hal-01652656/document">http</a> ]
<blockquote><font size="-1">
Keywords: systems, usability
</font></blockquote>
</dd>
<dt>
[<a name="Kleppmann2017json">41</a>]
</dt>
<dd>
Martin Kleppmann and Alastair R Beresford.
A conflict-free replicated JSON datatype.
<em>IEEE Transactions on Parallel and Distributed Systems</em>,
28(10):2733--2746, April 2017.
[ <a href="papers_bib.html#Kleppmann2017json">bib</a> |
<a href="http://dx.doi.org/10.1109/TPDS.2017.2697382">DOI</a> |
<a href="http://arxiv.org/abs/1608.03960">arXiv</a> ]
<blockquote><font size="-1">
Keywords: trees
</font></blockquote>
</dd>
<dt>
[<a name="Jungnickel2017imap">42</a>]
</dt>
<dd>
Tim Jungnickel and Lennart Oldenburg.
Pluto: The CRDT-driven IMAP server.
In <em>3rd International Workshop on Principles and Practice of
Consistency for Distributed Data</em>, PaPoC 2017. ACM, April 2017.
[ <a href="papers_bib.html#Jungnickel2017imap">bib</a> |
<a href="http://dx.doi.org/10.1145/3064889.3064891">DOI</a> |
<a href="http://www.redaktion.tu-berlin.de/fileadmin/a34331500/paper/papoc17-jungnickel.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: systems
</font></blockquote>
</dd>
<dt>
[<a name="Younes2017resettable">43</a>]
</dt>
<dd>
Georges Younes, Paulo Sérgio Almeida, and Carlos Baquero.
Compact resettable counters through causal stability.
In <em>3rd International Workshop on Principles and Practice of
Consistency for Distributed Data</em>, PaPoC 2017. ACM, April 2017.
[ <a href="papers_bib.html#Younes2017resettable">bib</a> |
<a href="http://dx.doi.org/10.1145/3064889.3064892">DOI</a> |
<a href="https://haslab.uminho.pt/cbm/files/a3-younes.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: counters
</font></blockquote>
</dd>
<dt>
[<a name="Zeller2017Repliss">44</a>]
</dt>
<dd>
Peter Zeller.
Testing properties of weakly consistent programs with Repliss.
In <em>3rd International Workshop on Principles and Practice of
Consistency for Distributed Data</em>, PaPoC 2017. ACM, April 2017.
[ <a href="papers_bib.html#Zeller2017Repliss">bib</a> |
<a href="http://dx.doi.org/10.1145/3064889.3064893">DOI</a> |
<a href="https://dl.acm.org/authorize?N37605">http</a> ]
<blockquote><font size="-1">
Keywords: testing, verification
</font></blockquote>
</dd>
<dt>
[<a name="Enes2017borrowing">45</a>]
</dt>
<dd>
Vitor Enes, Carlos Baquero, Paulo Sérgio Almeida, and João Leitão.
Borrowing an identity for a distributed counter: Work in progress
report.
In <em>3rd International Workshop on Principles and Practice of
Consistency for Distributed Data</em>, PaPoC 2017. ACM, April 2017.
[ <a href="papers_bib.html#Enes2017borrowing">bib</a> |
<a href="http://dx.doi.org/10.1145/3064889.3064894">DOI</a> |
<a href="https://haslab.uminho.pt/sites/default/files/cbm/files/a5-enes.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: counters
</font></blockquote>
</dd>
<dt>
[<a name="vanderLinde2017Legion">46</a>]
</dt>
<dd>
Albert van der Linde, Pedro Fouto, João Leitão, Nuno Preguiça,
Santiago Castiñeira, and Annette Bieniusa.
Legion: Enriching internet services with peer-to-peer interactions.
In <em>26th International Conference on World Wide Web</em>, WWW 2017,
pages 283--292. ACM, April 2017.
[ <a href="papers_bib.html#vanderLinde2017Legion">bib</a> |
<a href="http://dx.doi.org/10.1145/3038912.3052673">DOI</a> |
<a href="http://novasys.di.fct.unl.pt/~alinde/publications/fp0964-vanderlinde.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: systems, Legion
</font></blockquote>
</dd>
<dt>
[<a name="Briot2016group">47</a>]
</dt>
<dd>
Loïck Briot, Pascal Urso, and Marc Shapiro.
High responsiveness for group editing CRDTs.
In <em>19th International Conference on Supporting Group Work</em>,
GROUP 2016, pages 51--60. ACM, November 2016.
[ <a href="papers_bib.html#Briot2016group">bib</a> |
<a href="http://dx.doi.org/10.1145/2957276.2957300">DOI</a> |
<a href="https://hal.inria.fr/hal-01343941/document">http</a> ]
<blockquote><font size="-1">
Keywords: text-editing, RGASplit
</font></blockquote>
</dd>
<dt>
[<a name="Nicolaescu2016YATA">48</a>]
</dt>
<dd>
Petru Nicolaescu, Kevin Jahns, Michael Derntl, and Ralf Klamma.
Near real-time peer-to-peer shared editing on extensible data types.
In <em>19th International Conference on Supporting Group Work</em>,
GROUP 2016, pages 39--49. ACM, November 2016.
[ <a href="papers_bib.html#Nicolaescu2016YATA">bib</a> |
<a href="http://dx.doi.org/10.1145/2957276.2957310">DOI</a> |
<a href="https://www.researchgate.net/publication/310212186_Near_Real-Time_Peer-to-Peer_Shared_Editing_on_Extensible_Data_Types">http</a> ]
<blockquote><font size="-1">
Keywords: text-editing, Yjs
</font></blockquote>
</dd>
<dt>
[<a name="Lv2016stringbased">49</a>]
</dt>
<dd>
Xiao Lv, Fazhi He, Weiwei Cai, and Yuan Cheng.
An efficient collaborative editing algorithm supporting string-based
operations.
In <em>20th IEEE International Conference on Computer Supported
Cooperative Work in Design</em>, CSCWD 2016, pages 45--50. IEEE, September 2016.
[ <a href="papers_bib.html#Lv2016stringbased">bib</a> |
<a href="http://dx.doi.org/10.1109/CSCWD.2016.7565961">DOI</a> ]
<blockquote><font size="-1">
Keywords: text-editing
</font></blockquote>
</dd>
<dt>
[<a name="Attiya2016text">50</a>]
</dt>
<dd>
Hagit Attiya, Sebastian Burckhardt, Alexey Gotsman, Adam Morrison, Hongseok
Yang, and Marek Zawirski.
Specification and complexity of collaborative text editing.
In <em>ACM Symposium on Principles of Distributed Computing</em>, PODC
2016, pages 259--268. ACM, July 2016.
[ <a href="papers_bib.html#Attiya2016text">bib</a> |
<a href="http://dx.doi.org/10.1145/2933057.2933090">DOI</a> |
<a href="http://www.cs.ox.ac.uk/people/hongseok.yang/paper/podc16-full.pdf">.pdf</a> ]
<blockquote><font size="-1">
Keywords: text-editing, specification, verification
</font></blockquote>
</dd>
<dt>
[<a name="Akkoorath2016Cure">51</a>]
</dt>
<dd>
Deepthi Devaki Akkoorath, Alejandro Z. Tomsic, Manuel Bravo, Zhongmiao Li,