词条 | Operational transformation | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
释义 |
Operational transformation (OT) is a technology for supporting a range of collaboration functionalities in advanced collaborative software systems. OT was originally invented for consistency maintenance and concurrency control in collaborative editing of plain text documents. Two decades of research have extended its capabilities and expanded its applications to include group undo, locking, conflict resolution, operation notification and compression, group-awareness, HTML/XML and tree-structured document editing, collaborative office productivity tools, application-sharing, and collaborative computer-aided media design tools (see OTFAQ). In 2009 OT was adopted as a core technique behind the collaboration features in Apache Wave and Google Docs. HistoryOperational Transformation was pioneered by C. Ellis and S. Gibbs[1] in the GROVE (GRoup Outline Viewing Edit) system in 1989. Several years later, some correctness issues were identified and several approaches[2] [3][4][5]were independently proposed to solve these issues, which was followed by another decade of continuous efforts of extending and improving OT by a community of dedicated researchers. In 1998, a Special Interest Group on Collaborative Editing (SIGCE) was set up to promote communication and collaboration among CE and OT researchers. Since then, SIGCE holds annual CE workshops in conjunction with major CSCW (Computer Supported Cooperative Work) conferences, such as ACM, CSCW, GROUP and ECSCW. System architectureCollaboration systems utilizing Operational Transformations typically use replicated document storage, where each client has their own copy of the document; clients operate on their local copies in a lock-free, non-blocking manner, and the changes are then propagated to the rest of the clients; this ensures the client high responsiveness in an otherwise high-latency environment such as the Internet. When a client receives the changes propagated from another client, it typically transforms the changes before executing them; the transformation ensures that application-dependent consistency criteria (invariants) are maintained by all sites. This mode of operation results in a system particularly suited for implementing collaboration features, like simultaneous document editing, in a high-latency environment such as the web. Basics
generated by two users at collaborating sites 1 and 2, respectively. Suppose the two operations are executed in the order of O1 and O2 (at site 1). After executing O1, the document becomes "xabc". To execute O2 after O1, O2 must be transformed against O1 to become: O2' = Delete[3, "c"], whose positional parameter is incremented by one due to the insertion of one character "x" by O1. Executing O2' on "xabc" deletes the correct character "c" and the document becomes "xab". However, if O2 is executed without transformation, it incorrectly deletes character "b" rather than "c". The basic idea of OT is to transform (or adjust) the parameters of an editing operation according to the effects of previously executed concurrent operations so that the transformed operation can achieve the correct effect and maintain document consistency. Consistency modelsOne functionality of OT is to support consistency maintenance in collaborative editing systems. A number of consistency models have been proposed in the research community, some generally for collaborative editing systems, and some specifically for OT algorithms. The CC modelIn Ellis and Gibbs 1989 paper "Concurrency control in groupware systems",[1] two consistency properties are required for collaborative editing systems:
Since concurrent operations may be executed in different orders and editing operations are not commutative in general, copies of the document at different sites may diverge (inconsistent). The first OT algorithm was proposed in Ellis and Gibbs's paper[1] to achieve convergence in a group text editor; the state-vector (or vector clock in classic distributed computing) was used to preserve the precedence property. The CCI modelThe CCI model was proposed as a consistency management in collaborative editing systems.[3][9] Under the CCI model, three consistency properties are grouped together:
The CCI model extends the CC model with a new criterion: intention preservation. The essential difference between convergence and intention preservation is that the former can always be achieved by a serialization protocol, but the latter may not be achieved by any serialization protocol if operations were always executed in their original forms. Achieving the nonserialisable intention preservation property has been a major technical challenge. OT has been found particularly suitable for achieving convergence and intention preservation in collaborative editing systems. The CCI model is independent of document types or data models, operation types, or supporting techniques (OT, multi-versioning, serialization, undo/redo). It was not intended for correctness verification for techniques (e.g. OT) that are designed for specific data and operation models and for specific applications. In,[3] the notion of intention preservation was defined and refined at three levels: First, it was defined as a generic consistency requirement for collaborative editing systems; Second, it was defined as operation context-based pre- and post- transformation conditions for generic OT functions; Third, it was defined as specific operation verification criteria to guide the design of OT functions for two primitive operations: string-wise insert and delete, in collaborative plain text editors. The CSM modelThe condition of intention preservation was not formally specified in the CCI model for purposes of formal proofs. The SDT[6] and LBT[7] approaches try to formalize an alternative conditions that can be proved. The consistency model proposed in these two approaches consist of the following formal conditions:
The CA modelThe above CSM model requires that a total order of all objects in the system be specified. Effectively, the specification is reduced to new objects introduced by insert operations. However, specification of the total order entails application-specific policies such as those to break insertion ties (i.e., new objects inserted by two current operations at the same position). Consequently, the total order becomes application specific. Moreover, in the algorithm, the total order must be maintained in the transformation functions and control procedure, which increases time/space complexities of the algorithm. Alternatively, the CA model is based on the admissibility theory.[8] The CA model includes two aspects:
These two conditions imply convergence. All cooperating sites converge in a state in which there is a same set of objects that are in the same order. Moreover, the ordering is effectively determined by the effects of the operations when they are generated. Since the two conditions also impose additional constraints on object ordering, they are actually stronger than convergence. The CA model and the design/prove approach are elaborated in the 2005 paper.[8] It no longer requires that a total order of objects be specified in the consistency model and maintained in the algorithm, which hence results in reduced time/space complexities in the algorithm. OT system structureOT is a system of multiple components. One established strategy of designing OT systems[1][2][3][4][19][20] is to separate the high-level transformation control (or integration) algorithms from the low-level transformation functions.
The transformation control algorithm is concerned with determining:
The control algorithm invokes a corresponding set of transformation functions, which determine how to transform one operation against another according to the operation types, positions, and other parameters. The correctness responsibilities of these two layers are formally specified by a set of transformation properties and conditions. Different OT systems with different control algorithms, functions, and communication topologies require maintaining different sets of transformation properties. The separation of an OT system into these two layers allows for the design of generic control algorithms that are applicable to different kinds of application with different data and operation models. The other alternative approach was proposed in.[8] In their approach, an OT algorithm is correct if it satisfies two formalized correctness criteria:
As long as these two criteria are satisfied, the data replicas converge (with additional constraints) after all operations are executed at all sites. There is no need to enforce a total order of execution for the sake of achieving convergence. Their approach is generally to first identify and prove sufficient conditions for a few transformation functions, and then design a control procedure to ensure those sufficient conditions. This way the control procedure and transformation functions work synergistically to achieve correctness, i.e., causality and admissibility preservation. In their approach, there is no need to satisfy transformation properties such as TP2 because it does not require that the (inclusive) transformation functions work in all possible cases. OT data and operation modelsThere exist two underlying models in each OT system: the data model that defines the way data objects in a document are addressed by operations, and the operation model that defines the set of operations that can be directly transformed by OT functions. Different OT systems may have different data and operation models. For example, the data model of the first OT system[1] is a single linear address space; and its operation model consists of two primitive operations: character-wise insert and delete. The basic operation model has been extended to include a third primitive operation update to support collaborative Word document processing[9] and 3D model editing.[10] The basic OT data model has been extended into a hierarchy of multiple linear addressing domains,[11][12] which is capable of modeling a broad range of documents. A data adaptation process is often required to map application-specific data models to an OT-compliant data model.[27][13] There exist two approaches to supporting application level operations in an OT system:
OT functionsVarious OT functions have been designed for OT systems with different capabilities and used for different applications. OT functions used in different OT systems may be named differently, but they can be classified into two categories:
For example, suppose a type String with an operation ins(p, c, sid) where p is the position of insertion, c the character to insert and sid is the identifier of the site that has generated the operation. We can write the following transformation function: T(ins(),ins()) :- if () return ins() else if ( and ) return ins() else return ins() (ins(),ins()) :- if () return ins() else if ( and ) return ins() else return ins() Some OT systems use both IT and ET functions, and some use only IT functions. The complexity of OT function design is determined by various factors:
Transformation propertiesVarious transformation properties for ensuring OT system correctness have been identified. These properties can be maintained by either the transformation control algorithm[3][4][20][13][41][42] or by the transformation functions.[20] Different OT system designs have different division of responsibilities among these components. The specifications of these properties and preconditions of requiring them are given below. Convergence propertiesThe following two properties are related to achieving convergence.
Inverse propertiesThe following three properties are related to achieving the desired group undo effect. They are:
OT control (integration) algorithmsVarious OT control algorithms have been designed for OT systems with different capabilities and for different applications. The complexity of OT control algorithm design is determined by multiple factors. A key differentiating factor is whether an algorithm is capable of supporting concurrency control (do) and/or group undo.[2][21][19][42][48] In addition, different OT control algorithm designs make different tradeoffs in:
Most existing OT control algorithms for concurrency control adopt the theory of causality/concurrency as the theoretical basis: causally related operations must be executed in their causal order; concurrent operations must be transformed before their execution. However, it was well known that concurrency condition alone cannot capture all OT transformation conditions.[2][3][4][21][53] In a recent work, the theory of operation context has been proposed to explicitly represent the notion of a document state, which can be used to formally express OT transformation conditions for supporting the design and verification of OT control algorithms.[42] The following table gives an overview of some existing OT control/integration algorithms
The transformation-based algorithms proposed in [7][8] are based on the alternative consistency models "CSM" and "CA" as described above. Their approaches differ from those listed in the table. They use vector timestamps for causality preservation. The other correctness conditions are "single-"/"multi-" operation effects relation preservation or "admissibility" preservation. Those conditions are ensured by the control procedure and transformation functions synergistically. There is no need to discuss TP1/TP2 in their work. Hence they are not listed in the above table. There exist some other optimistic consistency control algorithms that seek alternative ways to design transformation algorithms, but do not fit well with the above taxonomy and characterization. For example, Mark and Retrace[30] The correctness problems of OT led to introduction of transformationless post-OT schemes, such as WOOT,[31] Logoot[32] and Causal Trees (CT).[33] "Post-OT" schemes decompose the document into atomic operations, but they workaround the need to transform operations by employing a combination of unique symbol identifiers, vector timestamps and/or tombstones. Critique of OTWhile the classic OT approach of defining operations through their offsets in the text seems to be simple and natural, real-world distributed systems raise serious issues. Namely, that operations propagate with finite speed, states of participants are often different, thus the resulting combinations of states and operations are extremely hard to foresee and understand. As Li and Li put it, "Due to the need to consider complicated case coverage, formal proofs are very complicated and error-prone, even for OT algorithms that only treat two characterwise primitives (insert and delete)".[34] Similarly, Joseph Gentle who is a former Google Wave engineer and an author of the Share.JS library wrote, "Unfortunately, implementing OT sucks. There's a million algorithms with different tradeoffs, mostly trapped in academic papers. […] Wave took 2 years to write and if we rewrote it today, it would take almost as long to write a second time."[35] But later he amends his comment with "I no longer believe that wave would take 2 years to implement now - mostly because of advances in web frameworks and web browsers." [36] For OT to work, every single change to the data needs to be captured: "Obtaining a snapshot of the state is usually trivial, but capturing edits is a different matter altogether. […] The richness of modern user interfaces can make this problematic, especially within a browser-based environment." An alternative to OT is differential synchronization.[37] Another alternative to OT is using sequence types of conflict-free replicated data type. See also
References1. ^1 2 3 4 5 {{cite journal|author=Ellis, C.A.|author2=Gibbs, S.J.|year=1989|title=Concurrency control in groupware systems|journal=ACM SIGMOD Record|volume=18|issue=2|pages=399–407|doi=10.1145/67544.66963|citeseerx=10.1.1.465.2026}} 2. ^1 2 3 4 {{cite conference|author = Ressel, Matthias and Nitsche-Ruhland, Doris and Gunzenhäuser, Rul| title = An integrating, transformation-oriented approach to concurrency control and undo in group editors| booktitle = CSCW '96: Proceedings of the 1996 ACM conference on Computer supported cooperative work| year = 1996| pages = 288–297|doi = 10.1145/240080.240305}} 3. ^1 2 3 4 5 6 {{cite journal | author = Chengzheng Sun |author2=Xiaohua Jia |author3=Yanchun Zhang |author4=Yun Yang |author5=David Chen | year = 1998 | title = Achieving convergence, causality preservation, and intention preservation in real-time cooperative editing systems | journal = ACM Trans. Comput.-Hum. Interact. | volume = 5 | issue = 1 | pages = 63–108 | doi = 10.1145/274444.274447 |citeseerx=10.1.1.56.1251 }} 4. ^1 2 3 4 {{Cite journal |title = High-latency, low-bandwidth windowing in the Jupiter collaboration system |url = ftp://ftp.lambda.moo.mud.org/pub/MOO/papers/JupiterWin.ps |year = 1995 |journal = Proceedings of the 8th Annual ACM Symposium on User Interface and Software Technology |pages = 111–120 |last1 = Nichols |first1 = D.A. |last2 = Curtis |first2 = P. |last3 = Dixon |first3 = M. |last4 = Lamping |first4 = J. |access-date = 2009-09-27 |archive-url = https://web.archive.org/web/20151130183552/http://ftp.lambda.moo.mud.org/pub/MOO/papers/JupiterWin.ps |archive-date = 2015-11-30 |dead-url = yes |df = }} 5. ^1 {{cite conference | author = Sun, C. |author2=Ellis, C. | year = 1998 | title = Operational transformation in real-time group editors: issues, algorithms, and achievements | conference = | booktitle = Proceedings of the 1998 ACM conference on Computer supported cooperative work | pages = 59–68 | publisher = ACM Press New York, NY, USA | url = http://portal.acm.org/citation.cfm?id=289444.289469 | conferenceurl = }} 6. ^{{cite conference | author = Du Li |author2=Rui Li | year = 2004 | title = Preserving Operation Effects Relation in Group Editors | conference = | booktitle = Proceedings of the ACM CSCW'04 Conference on Computer-Supported Cooperative Work | pages = 457–466 | publisher = ACM Press New York, NY, USA | url = | conferenceurl = }} 7. ^1 {{cite journal | author = Rui Li |author2=Du Li | year = 2007 | title = A New Operational Transformation Framework for Real-Time Group Editors | conference = | booktitle = IEEE Transactions on Parallel and Distributed Systems | volume = 18 | pages = 307–319 | url = | conferenceurl = | doi = 10.1109/TPDS.2007.35 | journal = IEEE Transactions on Parallel and Distributed Systems | issue = 3 }} 8. ^1 2 3 {{cite conference | author = Rui Li |author2=Du Li | year = 2005 | title = Commutativity-Based Concurrency Control in Groupware | conference = | booktitle = Proceedings of the First IEEE Conference on Collaborative Computing: Networking, Applications and Worksharing (CollaborateCom'05) | pages = | publisher = | url = | conferenceurl = }} 9. ^{{cite conference|author = D. Sun and S. Xia and C. Sun and D. Chen|title = Operational transformation for collaborative word processing|booktitle = Proc. of the ACM Conf. on Computer-Supported Cooperative Work|pages = 437–446|year = 2004}} 10. ^{{cite conference|author= Agustina and F. Liu and S. Xia and H. Shen and C. Sun|title= CoMaya: Incorporating advanced collaboration capabilities into {3D} digital media design tools|booktitle= Proc. of ACM Conf. on Computer-Supported Cooperative Work|pages= 5–8|date=November 2008}} 11. ^{{cite conference|author = Davis, Aguido Horatio and Sun, Chengzheng and Lu, Junwei|title = Generalizing operational transformation to the standard general markup language|conference=|booktitle = CSCW '02: Proceedings of the 2002 ACM conference on Computer supported cooperative work|year = 2002|pages = 58–67|location = New Orleans, Louisiana, USA|doi = 10.1145/587078.587088}} 12. ^{{cite conference |author = Claudia-Lavinia Ignat |author2 = Moira C. Norrie |year = 2003 |title = Customizable collaborative editor relying on treeOPT algorithm |conference = |booktitle = ECSCW'03: Proceedings of the eighth conference on European Conference on Computer Supported Cooperative Work |pages = 315–334 |publisher = Kluwer Academic Publishers |url = http://www.ecscw.org/2003/017Ignat_ecscw03.pdf|archive-url = https://web.archive.org/web/20071008184125/http://www.ecscw.org/2003/017Ignat_ecscw03.pdf|dead-url = yes|archive-date = 2007-10-08}} 13. ^1 2 3 {{cite web|title=Google Wave Operational Transform|url=http://www.waveprotocol.org/whitepapers/operational-transform}} 14. ^{{cite conference | author = Christopher R. Palmer |author2=Gordon V. Cormack | year = 1998 | title = Operation transforms for a distributed shared spreadsheet | conference = | booktitle = CSCW '98: Proceedings of the 1998 ACM conference on Computer supported cooperative work | pages = 69–78 | publisher = ACM Press |doi=10.1145/289444.289474 }} 15. ^{{cite conference|author1=C. Sun |author2=R. Sosic |lastauthoramp=yes |title = Optional Locking Integrated with Operational Transformation in Distributed Real-Time Group Editors|conference=|booktitle= In Proc. of the 18th ACM Symposium on Principles of Distributed Computing|pages = 43–52|year = 1999}} 16. ^1 2 {{cite journal|author = C.Sun, S.Xia, D.Sun, D.Chen, H.Shen, and W.Cai|title = Transparent adaptation of single-user applications for multi-user real-time collaboration|journal = ACM Trans. Comput.-Hum. Interact.|volume = 13|year = 2006|pages = 531–582|doi = 10.1145/1188816.1188821|issue = 4}} 17. ^{{cite journal|author = Begole, James and Rosson, Mary Beth and Shaffer, Clifford A.|title = Flexible collaboration transparency: supporting worker independence in replicated application-sharing systems|journal = ACM Trans. Comput.-Hum. Interact.|volume = 6|year = 1999|pages = 95–132|doi = 10.1145/319091.319096|issue = 2|citeseerx = 10.1.1.23.1185}} 18. ^{{cite conference |author1=Li, Du |author2=Li, Rui |lastauthoramp=yes |title = Transparent sharing and interoperation of heterogeneous single-user applications|booktitle = CSCW '02: Proceedings of the 2002 ACM conference on Computer supported cooperative work|year = 2002|pages = 246–255|location = New Orleans, USA}} 19. ^{{cite conference |author1=Li, Du |author2=Lu, Jiajun |lastauthoramp=yes |title = A lightweight approach to transparent sharing of familiar single-user editors|booktitle = CSCW '06: Proceedings of the 2006 20th anniversary conference on Computer supported cooperative work|year = 2006|pages = 139–148|location = Banff, Alberta, Canada|doi = 10.1145/1180875.1180896}} 20. ^{{cite journal | author = Gerald Oster |author2=Pascal Molli |author3=Pascal Urso |author4=Abdessamad Imine | year = 2006 | title = Tombstone Transformation Functions for Ensuring Consistency in Collaborative Editing Systems | journal = Procs. 2nd Intl. Conf. On Collaborative Computing: Networking, Appln. And Worksharing | url = http://hal.inria.fr/docs/00/10/90/39/PDF/OsterCollaborateCom06.pdf | accessdate = 2007-07-26 }} 21. ^1 2 3 {{cite journal |author = C. Sun|title = Undo as concurrent inverse in group editors|journal = ACM Trans. Comput.-Hum. Interact.|volume = 9|year = 2002|pages = 309–361|doi = 10.1145/586081.586085|issue = 4}} 22. ^1 2 {{cite journal|author1=Prakash, Atul |author2=Knister, Michael J. |lastauthoramp=yes |title = A framework for undoing actions in collaborative systems|journal = ACM Trans. Comput.-Hum. Interact.|volume = 1|year = 1994|pages = 295–330|doi = 10.1145/198425.198427|issue = 4|citeseerx=10.1.1.51.4793 }} 23. ^1 {{cite conference|author1=M. Ressel |author2=R. Gunzenhauser |lastauthoramp=yes |title = Reducing the Problems of Group Undo|booktitle = Proc. of the ACM Conf. on Supporting Group Work|pages = 131–139|year = 1999}} 24. ^1 {{cite conference|author1=Shen, Haifeng |author2=Sun, Chengzheng |lastauthoramp=yes | title = Flexible notification for collaborative systems| booktitle = CSCW '02: Proceedings of the 2002 ACM conference on Computer supported cooperative work| year = 2002| pages = 77–86| doi = 10.1145/587078.587090}} 25. ^1 2 3 {{cite journal |author1 = D. Sun |author2 = C. Sun |lastauthoramp = yes |title = Context-based Operational Transformation for Distributed Collaborative Editing Systems |journal = IEEE Trans. On Parallel and Distributed Systems |volume = 20 |issue = 10 |pages = 1454–1470 |year = 2009 |url = http://ieeexplore.ieee.org/xpl/freepre_abs_all.jsp?isnumber=4359390&arnumber=4668339 |archive-url = https://web.archive.org/web/20090612144850/http://ieeexplore.ieee.org/xpl/freepre_abs_all.jsp?isnumber=4359390&arnumber=4668339 |dead-url = yes |archive-date = 2009-06-12 |df = |doi = 10.1109/TPDS.2008.240 }} 26. ^{{cite conference|author1=R. Li, D. Li |author2=C. Sun |lastauthoramp=yes |title = A Time Interval Based Consistency Control Algorithm for Interactive Groupware Applications|booktitle = ICPADS '04: Proceedings of the Parallel and Distributed Systems, Tenth International Conference|year = 2004|pages = 429|doi = 10.1109/ICPADS.2004.12}} 27. ^1 2 {{cite conference |author = Vidot, N. |author2 = Cart, M. |author3 = Ferrie, J. |author4 = Suleiman, M. |year = 2000 |title = Copies convergence in a distributed real-time collaborative environment |conference = |booktitle = Proceedings of the 2000 ACM conference on Computer supported cooperative work |pages = 171–180 |publisher = ACM Press New York, NY, USA |url = http://www.lirmm.fr/~nvidot/php/get.php?file=vidot-cscw2000.pdf |conferenceurl = |deadurl = yes |archiveurl = https://web.archive.org/web/20041012143148/http://www.lirmm.fr/~nvidot/php/get.php?file=vidot-cscw2000.pdf |archivedate = 2004-10-12 |df = }} 28. ^1 {{cite conference | author = Suleiman, M. |author2=Cart, M. |author3=Ferrié, J. | year = 1998 | title = Concurrent Operations in a Distributed and Mobile Collaborative Environment | conference = | booktitle = Proceedings of the Fourteenth International Conference on Data Engineering, February | pages = 23–27 | publisher = | conferenceurl = |doi=10.1109/ICDE.1998.655755 }} 29. ^{{cite conference | author = M. Cart, Jean Ferrié, | year = 2007 | title = Synchronizer Based on Operational Transformation for P2P Environments | booktitle = Proceedings of the 3rd International Conference on Collaborative Computing: Networking, Applications and Worksharing | url = http://hal.archives-ouvertes.fr/docs/00/08/60/98/PDF/cart_document_RR_LIRMM.pdf | pages = 127–138 | accessdate = 2007-07-26 }} 30. ^{{cite conference|author = Gu, Ning and Yang, Jiangming and Zhang, Qiwei|title = Consistency maintenance based on the mark \\& retrace technique in groupware systems|booktitle = GROUP '05: Proceedings of the 2005 international ACM SIGGROUP conference on Supporting group work|year = 2005|pages = 264–273|doi = 10.1145/1099203.1099250}} 31. ^{{cite journal|author=Imine, Abdessamad and Molli, Pascal and Oster, Gerald and Urso, Pascal|title=Real time group editors without Operational transformation|pages=24|booktitle=INRIA Research Report RR-5580|year=2005|url=http://hal.inria.fr/inria-00071240/en/}} 32. ^{{cite journal|doi=10.1109/TPDS.2009.173|author=Stephane Weiss and Pascal Urso and Pascal Molli|title=Logoot-Undo: Distributed Collaborative Editing System on P2P Networks|booktitle=IEEE Transactions on Parallel and Distributed Systems|year=2010|page=1162|volume=21|journal=IEEE Transactions on Parallel and Distributed Systems|issue=8}} 33. ^{{cite conference |author = Victor Grishchenko |title = Deep Hypertext with embedded revision control implemented in regular expressions |conferenceurl = http://www.wikisym.org/ws2010/ |conference = WikiSym 2010 |booktitle = The Proceedings of the 6th International Symposium on Wikis and Open Collaboration (WikiSym '10) |year = 2010 |url = http://bouillon.math.usu.ru/articles/ctre.pdf |access-date = 2010-06-30 |archive-url = https://web.archive.org/web/20120309001037/http://bouillon.math.usu.ru/articles/ctre.pdf |archive-date = 2012-03-09 |dead-url = yes |df = }} 34. ^{{cite journal|author1=Du Li |author2=Rui Li |lastauthoramp=yes |title = An Admissibility-Based Operational Transformation Framework for Collaborative Editing Systems|journal=Computer Supported Cooperative Work (Cscw) |booktitle = Computer Supported Cooperative Work|year = 2010|volume=19|issue=1|pages = 1–43 |doi=10.1007/s10606-009-9103-1}} 35. ^{{cite web |url=http://sharejs.org/ |title=ShareJS |date=2011-11-06 |accessdate=2013-08-16}} 36. ^{{Cite web|url=https://news.ycombinator.com/item?id=12311984|title=Yes thats me! For what its worth, I no longer believe that wave would take 2 yea... {{!}} Hacker News|website=news.ycombinator.com|access-date=2019-02-13}} 37. ^{{cite web|author = Neil Fraser|title = Differential Synchronization|date = January 2009|url = http://neil.fraser.name/writing/sync/}} External links
Relevant online talks
4 : Concurrency control|Collaboration|Distributed algorithms|Groupware |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
随便看 |
|
开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。