Bartosz Sypytkowski
Bartosz Sypytkowski
This PR extends SyncPlugin with optional parameter, that will periodically send `SyncStep1` to the server. This way we can get notified about missing updates from other clients. Example scenario that...
This PR modified document indexer to enable reusing `Arc` supplied by persistence group instead of recreating it every time when `save` is being called. This means that we need to...
This PR modifies how we're running appflowy migrations. It basically provides a custom migration source capable of providing alternative migration sub-directories to be included/excluded in migration process. These can be...
Recently some of the people using our library noticed that one of the parts is leaking memory. We decided to investigate it with the help [mockalloc](https://crates.io/crates/mockalloc) crate, which tracked the...
This PR introduces a test scenario that simulates a process of book writing, but speed up to the maximum. Under normal conditions it can finish locally in ~6s, but given...
First: Thanks for this plugin! Without it writing Crystal code would be way worse experience. What I'd like to propose is to enable read-only labels, that would display what kind...
Currently there are times when we would like to extend and pass `Doc` around (i.e. inside of observer callbacks) for the purposes of some language- or user-defined extensions ie.: Yjs...
Since querying document state by hand is cumbersome exercise, we could enable (opt-in) support for using popular query experssions, i.e.: 1. [JSON Path](https://docs.rs/jsonpath-rust/0.7.1/jsonpath_rust/). Since the rust lib allows to make...