Yjs state vector:修订间差异

来自WHY42
Riguz留言 | 贡献
创建页面,内容为“Yjs has the ability to exchange only the differences when syncing two clients. We use lamport timestamps to identify structs and to track in which order a client created them. Each struct has an <syntaxhighlight lang="java" inline>struct.id = { client: number, clock: number}</syntaxhighlight> that uniquely identifies a struct. We define the next expected clock by each client as the state vector. This data structure is similar to the version vectors data structu…”
 
Riguz留言 | 贡献
无编辑摘要
第2行: 第2行:
<ref>https://github.com/yjs/yjs?tab=readme-ov-file#state-vector</ref>
<ref>https://github.com/yjs/yjs?tab=readme-ov-file#state-vector</ref>


<syntaxhighlight lang="javasript">
const toHexString = (bytes) => {
  return Array.from(bytes, (byte) => {
    return ("0" + (byte & 0xff).toString(16)).slice(-2);
  }).join("");
};
const doc = new Y.Doc();
console.log(toHexString(Y.encodeStateVector(doc)); // 00
root.insert(0, "Hello");
console.log(toHexString(Y.encodeStateVector(doc)); // 01edd5eaa70d05
root.insert(5, "World!");
console.log(toHexString(Y.encodeStateVector(doc)); // 01edd5eaa70d0b
</syntaxhighlight>


[[Category:Yjs]]
[[Category:Yjs]]
[[Category:CRDT]]
[[Category:CRDT]]

2024年10月15日 (二) 13:45的版本

Yjs has the ability to exchange only the differences when syncing two clients. We use lamport timestamps to identify structs and to track in which order a client created them. Each struct has an struct.id = { client: number, clock: number} that uniquely identifies a struct. We define the next expected clock by each client as the state vector. This data structure is similar to the version vectors data structure. But we use state vectors only to describe the state of the local document, so we can compute the missing struct of the remote client. We do not use it to track causality. [1]


const toHexString = (bytes) => {
  return Array.from(bytes, (byte) => {
    return ("0" + (byte & 0xff).toString(16)).slice(-2);
  }).join("");
};

const doc = new Y.Doc();
console.log(toHexString(Y.encodeStateVector(doc)); // 00
root.insert(0, "Hello");
console.log(toHexString(Y.encodeStateVector(doc)); // 01edd5eaa70d05
root.insert(5, "World!");
console.log(toHexString(Y.encodeStateVector(doc)); // 01edd5eaa70d0b