Bartosz Sypytkowski

Results 198 comments of Bartosz Sypytkowski

There are several problems of DotNetty in context of akka applications: - DotNetty introduces its own threading model, based on event loops. Akka uses actors and message dispatchers as abstraction....

@acds I've made some initial progress on [this branch](https://github.com/Horusiath/akka.net/tree/akka-io-tls), but speaking mildly .NET API for SSL is bad. Since this feature had limited number of people waiting for it, I...

TLS support is solved more on an actor level - the scala source code is not much of a help here, since JVM API is totally different from .NET when...

Document updates store data, that belongs to the document itself and needs to be persisted for the lifetime of the document itself. On the other hand, `StickyIndex` represents a temporary...

Hi @ryanbinnsrv do you have some code to reproduce the issue? It would help us to fix this issue faster. Currently one of the things we're focusing on is related...

Technically this issue should already be fixed in v0.18+. I've added the tests to main repo confirm that.

Apparently Supabase already provided an extension we were talking about: https://supabase.com/blog/postgres-crdt

Actually, we also have planned (and sponsored) implementation of persistence providers for Yrs, which should be generalized over some abstraction API. Initial plan is to provide an implementation for some...

Yes, applying updates should create (temporarily) untyped roots if they were not defined before. We have tests that confirm that behaviour in yrs and (I think) in ywasm. I'll check...

The standard way on how network protocol works is: 1. Peer A initializes connection and sends a state vector alone to peer B. 2. Peer B computes changes based on...