TE
테크에코
홈24시간 인기최신베스트질문쇼채용
GitHubTwitter
홈

테크에코

Next.js로 구축된 기술 뉴스 플랫폼으로 글로벌 기술 뉴스와 토론을 제공합니다.

GitHubTwitter

홈

홈최신베스트질문쇼채용

리소스

HackerNews API원본 HackerNewsNext.js

© 2025 테크에코. 모든 권리 보유.

A Run of CRDT Posts

11 포인트작성자: pfarago3일 전

1 comment

motorest2일 전
&gt; The algebra of semilattices has a single operator: join. Notably it doesn&#x27;t have any operator that corresponds to read or inspect. In fact, CRDTs as described in the literature provide absolutely no guarantees to readers, so a &quot;proper&quot; CRDT implementation should not allow reads!<p>Perhaps a proper mathematician can weigh in, but for a layman like me this assertion makes no sense at all.<p>A join-semilattice is a class of set characterized by a specific type of order and the support for an operation. If you add additional operations, it just further specializes the type of join semilattice. It&#x27;s properties stay the same, and you just add more of them.<p>Also, there is nothing in a set that prevents it from verifying membership of said set.<p>Nevertheless, let&#x27;s entertain the idea and assume that formally you could not verify membership of a set as it would imply loss of correctness. Let&#x27;s entertain that idea.<p>In practical terms this point would be moot. You could simply copy the current state of a set after each join, call it a realization of the CRDT set or something of the sort, treat it as a snapshot of the CRDT, and keep the original CRDT as a data structure that just supports a join. This realization of the CRDT does not need to be bound to any formal constraint enforced on the CRDT.<p>But that would be silly, wouldn&#x27;t it?