-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbibliographie.bib
More file actions
2028 lines (1840 loc) · 69.4 KB
/
Copy pathbibliographie.bib
File metadata and controls
2028 lines (1840 loc) · 69.4 KB
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
@Misc{strauss2013how,
author = {Valerie Strauss},
title = {How online class about online learning failed miserably},
year = 2013}
@inproceedings{kittur2007he,
author = {Kittur, Aniket and Suh, Bongwon and Pendleton, Bryan A. and Chi, Ed H.},
title = {He Says, She Says: Conflict and Coordination in Wikipedia},
booktitle = {Proceedings of the SIGCHI Conference on Human Factors in
Computing Systems},
series = {CHI '07},
year = {2007},
isbn = {978-1-59593-593-9},
location = {San Jose, California, USA},
pages = {453--462},
numpages = {10},
url = {http://doi.acm.org/10.1145/1240624.1240698},
doi = {10.1145/1240624.1240698},
acmid = {1240698},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {Wiki, Wikipedia, collaboration, conflict, user model,
visualization, web-based interaction},
}
@INPROCEEDINGS{ghinita2006adaptive,
author={Gabriel Ghinita and Yong Meng Teo},
booktitle={Proceedings 20th IEEE International Parallel Distributed Processing
Symposium},
title={An adaptive stabilization framework for distributed hash tables},
year={2006},
pages={10 pp.-},
keywords={adaptive systems;graph theory;peer-to-peer
computing;stability;adaptive stabilization;distributed hash
tables;overlay network;peer-to-peer computing;topology graph
reorganization;Computer science;Data analysis;Data
structures;Distributed computing;Drives;Large-scale
systems;Network topology;Peer to peer computing;Routing
protocols;Upper bound},
doi={10.1109/IPDPS.2006.1639269},
ISSN={1530-2075},
month={April}
}
@TECHREPORT{camarillo2014self,
title={Self-Tuning Distributed Hash Table (DHT) for REsource LOcation And
Discovery (RELOAD)},
author={Camarillo, Gonzalo and Maenpaa, Jouni},
year={2014},
month = {September},
number = {7363},
type = {RFC},
issn = {2070-1721},
institution = {Ericsson},
url = {\url{http://tools.ietf.org/html/rfc7363}}
}
@article{benet2014ipfs,
author = {Juan Benet},
title = {{IPFS} - Content Addressed, Versioned, {P2P} File System},
journal = {CoRR},
volume = {abs/1407.3561},
year = {2014},
url = {http://arxiv.org/abs/1407.3561},
timestamp = {Fri, 01 Aug 2014 13:50:01 +0200},
biburl = {http://dblp.uni-trier.de/rec/bib/journals/corr/Benet14},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@INPROCEEDINGS{kaewkitipong2012diffusion,
author={Laddawan Kaewkitipong},
booktitle={45th Hawaii International Conference on System Science (HICSS)
2012},
title={Diffusion of an Online Collaboration Tool: The Case of Google Wave
Adoption Failure},
year={2012},
pages={3990-3999},
keywords={Internet;Web sites;decision making;group decision support
systems;Google Wave adoption failure;group
decision-making;innovation theory;invite-only policy;online
collaboration tool;online
forums;Blogs;Collaboration;Encoding;Google;Interviews;
Organizations;Technological
innovation;Online collaboration tool;adoption;failure},
doi={10.1109/HICSS.2012.215},
ISSN={1530-1605},
month={Jan}
}
@inproceedings{conway2012logic,
author = {Conway, Neil and Marczak, William R. and Alvaro, Peter and
Hellerstein, Joseph M. and Maier, David},
title = {Logic and Lattices for Distributed Programming},
booktitle = {Proceedings of the Third ACM Symposium on Cloud Computing},
series = {SoCC '12},
year = {2012},
isbn = {978-1-4503-1761-0},
location = {San Jose, California},
pages = {1:1--1:14},
articleno = {1},
numpages = {14},
url = {http://doi.acm.org/10.1145/2391229.2391230},
doi = {10.1145/2391229.2391230},
acmid = {2391230},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {Bloom, distributed programming, eventual consistency, lattice},
}
@inproceedings{meiklejohn2015lasp,
author = {Meiklejohn, Christopher and Van Roy, Peter},
title = {Lasp: A Language for Distributed, Coordination-free Programming},
booktitle = {Proceedings of the 17th International Symposium on Principles and
Practice of Declarative Programming},
series = {PPDP '15},
year = {2015},
isbn = {978-1-4503-3516-4},
location = {Siena, Italy},
pages = {184--195},
numpages = {12},
url = {http://doi.acm.org/10.1145/2790449.2790525},
doi = {10.1145/2790449.2790525},
acmid = {2790525},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {Erlang, commutative operations, eventual consistency},
}
@Inbook{bieniusa2012brief,
author="Bieniusa, Annette and Zawirski, Marek and Pregui{\c{c}}a, Nuno and
Shapiro, Marc and Baquero, Carlos and Balegas, Valter and
Duarte, S{\'e}rgio",
title="Brief Announcement: Semantics of Eventually Consistent Replicated Sets",
bookTitle="DISC",
year="2012"
}
@article{ladin1992providing,
author = {Ladin, Rivka and Liskov, Barbara and Shrira, Liuba and Ghemawat,
Sanjay},
title = {Providing High Availability Using Lazy Replication},
journal = {ACM Trans. Comput. Syst.},
issue_date = {Nov. 1992},
volume = {10},
number = {4},
month = nov,
year = {1992},
issn = {0734-2071},
pages = {360--391},
numpages = {32},
url = {http://doi.acm.org/10.1145/138873.138877},
doi = {10.1145/138873.138877},
acmid = {138877},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {client/server architecture, fault tolerance, group communication,
high availability, operation ordering, replication,
scalability, semantics of application},
}
@article{herlihy1990linearizability,
author = {Herlihy, Maurice P. and Wing, Jeannette M.},
title = {Linearizability: A Correctness Condition for Concurrent Objects},
journal = {ACM Trans. Program. Lang. Syst.},
issue_date = {July 1990},
volume = {12},
number = {3},
month = jul,
year = {1990},
issn = {0164-0925},
pages = {463--492},
numpages = {30},
url = {http://doi.acm.org/10.1145/78969.78972},
doi = {10.1145/78969.78972},
acmid = {78972},
publisher = {ACM},
address = {New York, NY, USA}
}
@ARTICLE{brewer2012cap,
author={Eric Brewer},
journal={Computer},
title={CAP twelve years later: How the "rules" have changed},
year={2012},
volume={45},
number={2},
pages={23-29},
keywords={theorem proving;CAP theorem;Software Engineering Radio;Web
extra;consistency-availability-partition tolerance
theorem;networked shared-data system;partition handling;Cloud
computing;Data processing;Distributed databases;Relational
databases;ACID;BASE;CAP theorem;cloud computing},
doi={10.1109/MC.2012.37},
ISSN={0018-9162},
month={Feb}
}
@Inproceedings {attiya2016specification,
author = {Hagit Attiya and Sebastian Burckhardt and Alexey Gotsman and Adam
Morrison and Hongseok Yang and Marek Zawirski},
booktitle={Proceedings of the 2016 ACM symposium on Principles of distributed computing},
month = {July},
publisher = {ACM – Association for Computing Machinery},
title = {Specification and Complexity of Collaborative Text Editing},
url = {http://research.microsoft.com/apps/pubs/default.aspx?id=266575},
year = {2016},
published = {ACM},
location = {Chicago, Illinois}
}
@inproceedings{frey2009heterogeneous,
author = {Frey, Davide and Guerraoui, Rachid and Kermarrec, Anne-Marie and
Koldehofe, Boris and Mogensen, Martin and Monod, Maxime and
Qu{\'e}ma, Vivien},
title = {Heterogeneous Gossip},
booktitle = {Proceedings of the 10th ACM/IFIP/USENIX International Conference
on Middleware},
series = {Middleware '09},
year = {2009},
location = {Urbanna, Illinois},
pages = {3:1--3:20},
articleno = {3},
numpages = {20},
url = {http://dl.acm.org/citation.cfm?id=1656980.1656984},
acmid = {1656984},
publisher = {Springer-Verlag New York, Inc.},
address = {New York, NY, USA},
}
@article{pearson2011toward,
author = {Pearson, Siani},
title = {Toward Accountability in the Cloud},
journal = {IEEE Internet Computing},
issue_date = {July 2011},
volume = {15},
number = {4},
month = jul,
year = {2011},
issn = {1089-7801},
pages = {64--69},
numpages = {6},
url = {http://dx.doi.org/10.1109/MIC.2011.98},
doi = {10.1109/MIC.2011.98},
acmid = {2006879},
publisher = {IEEE Educational Activities Department},
address = {Piscataway, NJ, USA},
keywords = {accountability, cloud, intelligent accountability, privacy},
}
@article{desanctis1987foundation,
author = {Desanctis, Gerardine and Gallupe, R. Brent},
title = {A Foundation for the Study of Group Decision Support Systems},
journal = {Management Science},
issue_date = {May 1987},
volume = {33},
number = {5},
month = may,
year = {1987},
issn = {0025-1909},
pages = {589--609},
numpages = {21},
url = {http://dx.doi.org/10.1287/mnsc.33.5.589},
doi = {10.1287/mnsc.33.5.589},
acmid = {34024},
publisher = {INFORMS},
address = {Institute for Operations Research and the Management Sciences
(INFORMS), Linthicum, Maryland, USA}
}
@article{grudin1994computersupported,
author = {Grudin, Jonathan},
title = {Computer-Supported Cooperative Work: History and Focus},
journal = {Computer},
issue_date = {May 1994},
volume = {27},
number = {5},
month = may,
year = {1994},
issn = {0018-9162},
pages = {19--26},
numpages = {8},
url = {http://dx.doi.org/10.1109/2.291294},
doi = {10.1109/2.291294},
acmid = {187669},
publisher = {IEEE Computer Society Press},
address = {Los Alamitos, CA, USA},
}
@Inbook{gupta2003kelips,
author="Gupta, Indranil and Birman, Ken and Linga, Prakash and Demers, Al and
van Renesse, Robbert",
chapter="Kelips: Building an Efficient and Stable P2P DHT through Increased
Memory and Background Overhead",
title="Peer-to-Peer Systems II: Second International Workshop, IPTPS 2003,
Berkeley, CA, USA, February 21-22, 2003. Revised Papers",
year="2003",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="160--169",
isbn="978-3-540-45172-3",
doi="10.1007/978-3-540-45172-3_15",
url="http://dx.doi.org/10.1007/978-3-540-45172-3_15"
}
@inproceedings{mansour2016demonstration,
author = {Mansour, Essam and Sambra, Andrei Vlad and Hawke, Sandro and Zereba,
Maged and Capadisli, Sarven and Ghanem, Abdurrahman and
Aboulnaga, Ashraf and Berners-Lee, Tim},
title = {A Demonstration of the Solid Platform for Social Web Applications},
booktitle = {Proceedings of the 25th International Conference Companion on
World Wide Web},
series = {WWW '16 Companion},
year = {2016},
isbn = {978-1-4503-4144-8},
location = {Montr\&\#233;al, Qu\&\#233;bec, Canada},
pages = {223--226},
numpages = {4},
url = {http://dx.doi.org/10.1145/2872518.2890529},
doi = {10.1145/2872518.2890529},
acmid = {2890529},
publisher = {International World Wide Web Conferences Steering Committee},
address = {Republic and Canton of Geneva, Switzerland},
keywords = {decentralization, linked data platform (ldp), social web, webid,
sparql},
}
@article{wood2014ethereum,
title={Ethereum: A secure decentralised generalised transaction ledger},
author={Wood, Gavin},
journal={Ethereum Project Yellow Paper},
year={2014}
}
@Inbook{voulgaris2013vicinity,
author="Voulgaris, Spyros and van Steen, Maarten",
chapter="VICINITY: A Pinch of Randomness Brings out the Structure",
title="Middleware 2013: ACM/IFIP/USENIX 14th International Middleware Conference, Beijing, China, December 9-13, 2013, Proceedings",
year="2013",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="21--40",
isbn="978-3-642-45065-5",
doi="10.1007/978-3-642-45065-5_2",
url="http://dx.doi.org/10.1007/978-3-642-45065-5_2"
}
@Inbook{krasikova2016distributed,
author="Krasikova, Sveta and G{\'o}mez, Raziel C. and Ribeiro, Heverson B.
and Rivi{\`e}re, Etienne and Schiavoni, Valerio",
chapter="Evaluating the Cost and Robustness of Self-organizing Distributed
Hash Tables",
title="Distributed Applications and Interoperable Systems: 16th IFIP WG 6.1
International Conference, DAIS 2016, Held as Part of the 11th
International Federated Conference on Distributed Computing
Techniques, DisCoTec 2016, Heraklion, Crete, Greece, June 6-9,
2016, Proceedings",
year="2016",
publisher="Springer International Publishing",
address="Cham",
pages="16--31",
isbn="978-3-319-39577-7",
doi="10.1007/978-3-319-39577-7_2",
url="http://dx.doi.org/10.1007/978-3-319-39577-7_2"
}
@Inbook{folz2016cyclades,
author="Folz, Pauline and Skaf-Molli, Hala and Molli, Pascal",
chapter="CyCLaDEs: A Decentralized Cache for Triple Pattern Fragments",
title="The Semantic Web. Latest Advances and New Domains: 13th International
Conference, ESWC 2016, Heraklion, Crete, Greece, May 29 --
June 2, 2016, Proceedings",
year="2016",
publisher="Springer International Publishing",
address="Cham",
pages="455--469",
isbn="978-3-319-34129-3",
doi="10.1007/978-3-319-34129-3_28",
url="http://dx.doi.org/10.1007/978-3-319-34129-3_28"
}
@article{perkel2014scientific,
title={Scientific writing: the online cooperative},
author={Perkel, Jeffrey M},
journal={Nature},
volume={514},
number={7520},
pages={127--128},
year={2014}
}
@article{kermarrec2003probabilistic,
author = {Kermarrec, Anne-Marie and Massouli{\'e}, Laurent and Ganesh,
Ayalvadi J.},
title = {Probabilistic Reliable Dissemination in Large-Scale Systems},
journal = {IEEE Trans. Parallel Distrib. Syst.},
issue_date = {March 2003},
volume = {14},
number = {3},
month = mar,
year = {2003},
issn = {1045-9219},
pages = {248--258},
numpages = {11},
url = {http://dx.doi.org/10.1109/TPDS.2003.1189583},
doi = {10.1109/TPDS.2003.1189583},
acmid = {766623},
publisher = {IEEE Press},
address = {Piscataway, NJ, USA},
keywords = {Scalability, reliability, gossip-based probabilistic multicast,
membership, group communication, random graphs.}
}
@Inbook{nicolaescu2015yjs,
author="Nicolaescu, Petru and Jahns, Kevin and Derntl, Michael and Klamma,
Ralf",
chapter="Yjs: A Framework for Near Real-Time P2P Shared Editing on Arbitrary
Data Types",
title="Engineering the Web in the Big Data Era: 15th International Conference,
ICWE 2015, Rotterdam, The Netherlands, June 23-26, 2015,
Proceedings",
year="2015",
publisher="Springer International Publishing",
address="Cham",
pages="675--678",
isbn="978-3-319-19890-3",
doi="10.1007/978-3-319-19890-3_55",
url="http://dx.doi.org/10.1007/978-3-319-19890-3_55"
}
@inproceedings{lautamaki2012cored,
author = {Lautam\"{a}ki, Janne and Nieminen, Antti and Koskinen, Johannes and
Aho, Timo and Mikkonen, Tommi and Englund, Marc},
title = {CoRED: Browser-based Collaborative Real-time Editor for Java Web
Applications},
booktitle = {Proceedings of the ACM 2012 Conference on Computer Supported
Cooperative Work},
series = {CSCW '12},
year = {2012},
isbn = {978-1-4503-1086-4},
location = {Seattle, Washington, USA},
pages = {1307--1316},
numpages = {10},
url = {http://doi.acm.org/10.1145/2145204.2145399},
doi = {10.1145/2145204.2145399},
acmid = {2145399},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {collaboration architectures, development tools, vaadin}
}
@inproceedings{jelasity2004peer,
author = {Jelasity, M\'{a}rk and Guerraoui, Rachid and Kermarrec, Anne-Marie
and van Steen, Maarten},
title = {The Peer Sampling Service: Experimental Evaluation of Unstructured
Gossip-based Implementations},
booktitle = {Proceedings of the 5th ACM/IFIP/USENIX International Conference
on Middleware},
series = {Middleware '04},
year = {2004},
isbn = {3-540-23428-4},
location = {Toronto, Canada},
pages = {79--98},
numpages = {20},
url = {http://dl.acm.org/citation.cfm?id=1045658.1045666},
acmid = {1045666},
publisher = {Springer-Verlag New York, Inc.},
address = {New York, NY, USA}
}
@inproceedings{nedelec2016crate,
author = {N{\'e}delec, Brice and Molli, Pascal and Mostefaoui, Achour},
title = {CRATE: Writing Stories Together with Our Browsers},
booktitle = {Proceedings of the 25th International Conference Companion on
World Wide Web},
series = {WWW '16 Companion},
year = {2016},
isbn = {978-1-4503-4144-8},
location = {Montr\&\#233;al, Qu\&\#233;bec, Canada},
pages = {231--234},
numpages = {4},
url = {http://dx.doi.org/10.1145/2872518.2890539},
doi = {10.1145/2872518.2890539},
acmid = {2890539},
publisher = {International World Wide Web Conferences Steering Committee},
address = {Republic and Canton of Geneva, Switzerland},
keywords = {collaborative editor, decentralized, real-time},
}
@phdthesis{ahmed2015evaluation,
TITLE = {{Evaluation methodology for replicated data types}},
AUTHOR = {Ahmed-Nacer, Mehdi},
URL = {https://tel.archives-ouvertes.fr/tel-01252234},
SCHOOL = {{Universit{\'e} de Lorraine}},
YEAR = {2015},
MONTH = May,
KEYWORDS = {Optimistic replication ; Replicated data types ; Evaluation
methodology. ; R{\'e}plication optimiste ; Type de donn{\'e}es
r{\'e}pliqu{\'e}s ; M{\'e}thodologie d’{\'e}valuation.},
TYPE = {Theses},
PDF = {https://tel.archives-ouvertes.fr/tel-01252234/file/these-AhmedNacer_Mehdi.pdf},
HAL_ID = {tel-01252234},
HAL_VERSION = {v1},
}
@PhdThesis{zawirski2015dependable,
author = {Marek Zawirski},
title = {{Dependable Eventual Consistency with Replicated Data Types}},
school = {L'université Pierre et Marie Curie (UPMC)},
year = 2015,
month = jan,
address = {Paris, France},
}
@techreport{nedelec2015spray,
TITLE = {{Spray: an Adaptive Random Peer Sampling Protocol}},
AUTHOR = {N{\'e}delec, Brice and Tanke, Julian and Frey, Davide and Molli,
Pascal and Mostefaoui, Achour},
URL = {https://hal.archives-ouvertes.fr/hal-01203363},
TYPE = {Technical Report},
INSTITUTION = {{LINA-University of Nantes ; INRIA Rennes - Bretagne Atlantique}},
YEAR = {2015},
MONTH = Sep,
PDF = {https://hal.archives-ouvertes.fr/hal-01203363/file/spray.pdf},
HAL_ID = {hal-01203363},
HAL_VERSION = {v1},
}
@INPROCEEDINGS{montresor2005chord,
author={A. Montresor and M. Jelasity and O. Babaoglu},
booktitle={Fifth IEEE International Conference on Peer-to-Peer Computing
(P2P'05)},
title={Chord on demand},
year={2005},
pages={87-94},
keywords={optimisation;peer-to-peer computing;protocols;telecommunication
network topology;Chord protocol;Chord structured overlay
network;Chord topology;T-Chord network;message latency;network
optimization;overlay infrastructure;peer-to-peer overlay
network;random unstructured overlay;Buildings;Concurrent
computing;Convergence;Delay;Mesh generation;Network
topology;Peer to peer computing;Robustness;Routing protocols},
doi={10.1109/P2P.2005.4},
ISSN={2161-3559},
month={Aug}
}
@Article{noel2004empirical,
author="No{\"e}l, Sylvie and Robert, Jean-Marc",
title="Empirical Study on Collaborative Writing: What Do Co-authors Do, Use,
and Like?",
journal="Computer Supported Cooperative Work (CSCW)",
year="2004",
volume="13",
number="1",
pages="63--89",
issn="1573-7551",
doi="10.1023/B:COSU.0000014876.96003.be",
url="http://dx.doi.org/10.1023/B:COSU.0000014876.96003.be"
}
@INPROCEEDINGS{mogan2010impact,
author={Mogan, Stephen and Wang, Weigang},
booktitle={2010 IEEE Second International Conference on Social Computing
(SocialCom)},
title={The Impact of Web 2.0 Developments on Real-Time Groupware},
year={2010},
pages={534-539},
keywords={Internet;graphical user interfaces;groupware;online
front-ends;real-time systems;Web 2.0
developments;browser-based real-time groupware;graphical user
interface;Browsers;Collaborative software;Collaborative
work;Google;Real time systems;User interfaces;AJAX;Real-time
groupware;Web 2.0},
doi={10.1109/SocialCom.2010.84},
month={Aug}
}
@phdthesis{cherrueau2016composer,
title={Composer les techniques de sécurité pour un nuage plus sûr},
author={Cherrueau, Ronan-Alexandre},
school={École des Mines de Nantes},
year={2016}
}
@phdthesis{lautamaki2013development,
title={On the Development of Real-Time Multi-User Web Applications},
author={Lautam{\"a}ki, Janne},
journal={Tampereen teknillinen yliopisto. Julkaisu-Tampere University of
Technology. Publication; 1167},
school = {Tampere University of Technology},
year={2013}
}
@inproceedings{engelbart1968research,
author = {Engelbart, Douglas C. and English, William K.},
title = {A Research Center for Augmenting Human Intellect},
booktitle = {Fall Joint Computer Conference, Part I},
year = {1968}
}
@article{mostefaoui2015signature,
TITLE = {{Signature-Free Asynchronous Binary Byzantine Consensus with
t$\textless{}$n/3, O(n${}^2$) Messages, and O(1) Expected
Time}},
AUTHOR = {Most{\'e}faoui, Achour and Moumen, Hamouma and Raynal, Michel},
URL = {https://hal.archives-ouvertes.fr/hal-01176110},
JOURNAL = {{Journal of the ACM (JACM)}},
HAL_LOCAL_REFERENCE = {ACL},
PUBLISHER = {{Elsevier}},
VOLUME = {62},
PAGES = {1000-1020},
YEAR = {2015},
MONTH = Dec,
DOI = {10.1145/2785953},
KEYWORDS = {Signature-free algorithm ; Simplicity ; Asynchronous
message-passing system ; Broadcast abstraction ; Byzantine
process ; Common coin ; Consensus ; Distributed algorithm ;
Optimal resilience ; Randomized algorithm},
PDF = {https://hal.archives-ouvertes.fr/hal-01176110/file/JACM.pdf},
HAL_ID = {hal-01176110},
HAL_VERSION = {v1},
}
@article {breslow2013studying,
author = {Breslow, Lori B. and David E. Pritchard and DeBoer, Jennifer and
Stump, Glenda S. and Ho, Andrew D. and Seaton, Daniel T.},
title = {Studying learning in the worldwide classroom: Research into
edX{\textquoteright}s first MOOC},
journal = {Research \& Practice in Assessment},
volume = {8},
year = {2013},
pages = {13-25},
url = {http://www.rpajournal.com/dev/wp-content/uploads/2013/05/SF2.pdf}
}
@inproceedings{vanderlinde2016delta,
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 = {Proceedings of the 2Nd Workshop on the Principles and Practice of
Consistency for Distributed Data},
series = {PaPoC '16},
year = {2016},
isbn = {978-1-4503-4296-4},
location = {London, United Kingdom},
pages = {12:1--12:4},
articleno = {12},
numpages = {4},
url = {http://doi.acm.org/10.1145/2911151.2911163},
doi = {10.1145/2911151.2911163},
acmid = {2911163},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {CRDT, replication, weak consistency},
}
@inproceedings{maymounkov2002kademlia,
author = {Maymounkov, Petar and Mazi\`{e}res, David},
title = {Kademlia: A Peer-to-Peer Information System Based on the XOR Metric},
booktitle = {Revised Papers from the First International Workshop on
Peer-to-Peer Systems},
series = {IPTPS '01},
year = {2002},
isbn = {3-540-44179-4},
pages = {53--65},
numpages = {13},
url = {http://dl.acm.org/citation.cfm?id=646334.687801},
acmid = {687801},
publisher = {Springer-Verlag},
address = {London, UK, UK},
}
@article{zhao2006tapestry,
author = {Zhao, Ben Y. and Huang, Ling and Stribling, Jeremy and Rhea, Sean
C. and Joseph, Anthony D. and Kubiatowicz, John D.},
title = {Tapestry: A Resilient Global-scale Overlay for Service Deployment},
journal = {IEEE Journal on Selected Areas in Communications},
issue_date = {September 2006},
volume = {22},
number = {1},
month = sep,
year = {2006},
issn = {0733-8716},
pages = {41--53},
numpages = {13},
url = {http://dx.doi.org/10.1109/JSAC.2003.818784},
doi = {10.1109/JSAC.2003.818784},
acmid = {2314945},
publisher = {IEEE Press},
address = {Piscataway, NJ, USA}
}
@inproceedings{rowstron2001pastry,
author = {Rowstron, Antony I. T. and Druschel, Peter},
title = {Pastry: Scalable, Decentralized Object Location, and Routing for
Large-Scale Peer-to-Peer Systems},
booktitle = {Proceedings of the IFIP/ACM International Conference on
Distributed Systems Platforms Heidelberg},
series = {Middleware '01},
year = {2001},
isbn = {3-540-42800-3},
pages = {329--350},
numpages = {22},
url = {http://dl.acm.org/citation.cfm?id=646591.697650},
acmid = {697650},
publisher = {Springer-Verlag},
address = {London, UK}
}
@inproceedings{ratnasamy2001scalable,
author = {Ratnasamy, Sylvia and Francis, Paul and Handley, Mark and Karp,
Richard and Shenker, Scott},
title = {A Scalable Content-addressable Network},
booktitle = {Proceedings of the 2001 Conference on Applications, Technologies,
Architectures, and Protocols for Computer Communications},
series = {SIGCOMM '01},
year = {2001},
isbn = {1-58113-411-8},
location = {San Diego, California, USA},
pages = {161--172},
numpages = {12},
url = {http://doi.acm.org/10.1145/383059.383072},
doi = {10.1145/383059.383072},
acmid = {383072},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{stoica2001chord,
author = {Stoica, Ion and Morris, Robert and Karger, David and Kaashoek,
M. Frans and Balakrishnan, Hari},
title = {Chord: A Scalable Peer-to-peer Lookup Service for Internet
Applications},
booktitle = {Proceedings of the 2001 Conference on Applications, Technologies,
Architectures, and Protocols for Computer Communications},
series = {SIGCOMM '01},
year = {2001},
isbn = {1-58113-411-8},
location = {San Diego, California, USA},
pages = {149--160},
numpages = {12},
url = {http://doi.acm.org/10.1145/383059.383071},
doi = {10.1145/383059.383071},
acmid = {383071},
publisher = {ACM},
address = {New York, NY, USA},
}
@phdthesis{weiss2010collaborative,
TITLE = {{Collaborative editing over P2P networks}},
AUTHOR = {Weiss, St{\'e}phane},
URL = {https://tel.archives-ouvertes.fr/tel-00542853},
SCHOOL = {{Universit{\'e} Henri Poincar{\'e} - Nancy I}},
YEAR = {2010},
MONTH = Oct,
KEYWORDS = {Collaborative Editing ; Peer-to-Peer ; Distributed computing ; Travail collaboratif ; R{\'e}seau Poste-{\`a}-Poste ; Traitement r{\'e}parti},
TYPE = {Theses},
PDF = {https://tel.archives-ouvertes.fr/tel-00542853/file/main.pdf},
HAL_ID = {tel-00542853},
HAL_VERSION = {v1},
}
@article{watts1998collective,
title={Collective dynamics of ‘small-world’ networks},
author={Watts, Duncan J. and Strogatz, Steven H.},
journal={nature},
volume={393},
number={6684},
pages={440--442},
year={1998},
publisher={Nature Publishing Group}
}
@INPROCEEDINGS{leitao2007dependable,
author={Leit{\~a}o, Joao and Pereira, Jos{\'e} and Rodrigues, Luis},
booktitle={Dependable Systems and Networks, 2007. DSN '07. 37th Annual
IEEE/IFIP International Conference on},
title={HyParView: A Membership Protocol for Reliable Gossip-Based Broadcast},
year={2007},
pages={419-429},
keywords={protocols;HyParView;gossip protocol;gossip-based
broadcast;membership protocol;resilient reliable broadcast
primitives;Broadcasting;Clustering
algorithms;Costs;Maintenance;Peer to peer computing;Power
system reliability;Redundancy;Sampling
methods;Scalability;Transport protocols},
doi={10.1109/DSN.2007.56},
month={June}
}
@article{abdullahi1998garbage,
author = {Abdullahi, Saleh E. and Ringwood, Graem A.},
title = {Garbage Collecting the Internet: A Survey of Distributed Garbage
Collection},
journal = {ACM Comput. Surv.},
issue_date = {Sept. 1998},
volume = {30},
number = {3},
month = sep,
year = {1998},
issn = {0360-0300},
pages = {330--373},
numpages = {44},
url = {http://doi.acm.org/10.1145/292469.292471},
doi = {10.1145/292469.292471},
acmid = {292471},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {automatic storage reclamation, distributed, distributed file
systems, distributed memories, distributed object-oriented
management, memory management, network communication,
object-oriented databases, reference counting}
}
@article{burckhardt2014replicated,
author = {Burckhardt, Sebastian and Gotsman, Alexey and Yang, Hongseok and
Zawirski, Marek},
title = {Replicated Data Types: Specification, Verification, Optimality},
journal = {SIGPLAN Not.},
issue_date = {January 2014},
volume = {49},
number = {1},
month = jan,
year = {2014},
issn = {0362-1340},
pages = {271--284},
numpages = {14},
url = {http://doi.acm.org/10.1145/2578855.2535848},
doi = {10.1145/2578855.2535848},
acmid = {2535848},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {eventual consistency, replication, weak memory},
}
@inproceedings{gifford1979weighted,
author = {Gifford, David K.},
title = {Weighted Voting for Replicated Data},
booktitle = {Proceedings of the Seventh ACM Symposium on Operating Systems
Principles},
series = {SOSP '79},
year = {1979},
isbn = {0-89791-009-5},
location = {Pacific Grove, California, USA},
pages = {150--162},
numpages = {13},
url = {http://doi.acm.org/10.1145/800215.806583},
doi = {10.1145/800215.806583},
acmid = {806583},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {Computer network, File suite, File system, Locking, Quorum,
Replicated data, Representative, Transaction, Weak
representative, Weighted voting},
}
@inproceedings{alsberg1976principle,
author = {Alsberg, Peter and Day, John},
title = {A Principle for Resilient Sharing of Distributed Resources},
booktitle = {Proceedings of the 2nd International Conference on Software
Engineering},
series = {ICSE '76},
year = {1976},
location = {San Francisco, California, USA},
pages = {562--570},
numpages = {9},
url = {http://dl.acm.org/citation.cfm?id=800253.807732},
acmid = {807732},
publisher = {IEEE Computer Society Press},
address = {Los Alamitos, CA, USA},
keywords = {Distributed computer systems, Distributed control, Resilient
protocols, Resilient resource sharing, Resource sharing},
}
@techreport{mell2011national,
author = {Mell, Peter and Grance, Timothy},
title = {SP 800-145. The NIST Definition of Cloud Computing},
year = {2011},
publisher = {National Institute of Standards \& Technology},
address = {Gaithersburg, MD, United States},
institution = {National Institute of Standards and Technology}
}
@misc{gellman2013us,
author={Gellman, Barton and Poitras, Laura},
title={{U}.{S}., British intelligence mining data from nine {U}.{S}. Internet companies in broad secret program},
editor={washingtonpost.com},
month={June},
year={2013},
note = {\href{https://www.washingtonpost.com/investigations/us-intelligence-mining-data-from-nine-us-internet-companies-in-broad-secret-program/2013/06/06/3a0c0da8-cebf-11e2-8845-d970ccb04497_story.html}{washingtonpost.com} {[Online; posted 7-June-2013]}}
}
@article{giles2005internet,
author={Giles, Jim},
title={Internet encyclopaedias go head to head},
journal={Nature},
year={2005},
}
@inproceedings{mehdi2014merging,
author = {Mehdi, Ahmed-Nacer and Urso, Pascal and Balegas, Valter and
Pergui\c{c}a, Nuno},
title = {Merging OT and CRDT Algorithms},
booktitle = {Proceedings of the First Workshop on Principles and Practice of
Eventual Consistency},
series = {PaPEC '14},
year = {2014},
isbn = {978-1-4503-2716-9},
location = {Amsterdam, The Netherlands},
pages = {9:1--9:4},
articleno = {9},
numpages = {4},
url = {http://doi.acm.org/10.1145/2596631.2596636},
doi = {10.1145/2596631.2596636},
acmid = {2596636},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {algorithms, cloud, collaborative editing, commutative replicated data types, experimentation, operational transformation, performance},
}
@article{birman1999bimodal,
author = {Birman, Kenneth P. and Hayden, Mark and Ozkasap, Oznur and Xiao,
Zhen and Budiu, Mihai and Minsky, Yaron},
title = {Bimodal Multicast},
journal = {ACM Trans. Comput. Syst.},
issue_date = {May 1999},
volume = {17},
number = {2},
month = may,
year = {1999},
issn = {0734-2071},
pages = {41--88},
numpages = {48},
url = {http://doi.acm.org/10.1145/312203.312207},
doi = {10.1145/312203.312207},
acmid = {312207},
publisher = {ACM},
address = {New York, NY, USA},
}
@article{bailis2013eventual,
author = {Bailis, Peter and Ghodsi, Ali},
title = {Eventual Consistency Today: Limitations, Extensions, and Beyond},
journal = {Commun. ACM},
issue_date = {May 2013},
volume = {56},
number = {5},
month = may,
year = {2013},
issn = {0001-0782},
pages = {55--63},
numpages = {9},
url = {http://doi.acm.org/10.1145/2447976.2447992},
doi = {10.1145/2447976.2447992},
acmid = {2447992},
publisher = {ACM},
address = {New York, NY, USA},
}
@article{jelasity2007gossip,
title={Gossip-based peer sampling},
author={Jelasity, M{\'a}rk and Voulgaris, Spyros and Guerraoui, Rachid and
Kermarrec, Anne-Marie and Van Steen, Maarten},
journal={ACM Transactions on Computer Systems (TOCS)},
volume={25},
number={3},
pages={8},
year={2007},
publisher={ACM}
}
@article{dabek2004vivaldi,
author = {Dabek, Frank and Cox, Russ and Kaashoek, Frans and Morris, Robert},
title = {Vivaldi: A Decentralized Network Coordinate System},
journal = {SIGCOMM Comput. Commun. Rev.},
issue_date = {October 2004},
volume = {34},
number = {4},
month = aug,
year = {2004},
issn = {0146-4833},
pages = {15--26},
numpages = {12},
url = {http://doi.acm.org/10.1145/1030194.1015471},