Guido D'Orsi

Results 49 issues of Guido D'Orsi

Repro steps: - run `cd examples/chat-rn-expo && pnpm install && pnpm ios` to start the example app - if an account is already stored the loading should fail with an...

Testing on the chat app with ~150msg the load is around 4s (in dev mode, iOS simulator) Done some experiments and: - switching to the [new subscription branch](https://github.com/garden-co/jazz/pull/2015) reduces the...

When loading big files from storage we can observe two issues. First, the content is processed all at once, blocking the main thread: ![Image](https://github.com/user-attachments/assets/785b7e3e-d6db-4ab5-9d87-5804bd633e9a) Second, if the content isn't fully...

bug
perf

In order to support different scenarios we want to add the possibility to use multiple keys on Account.In order to be able to do that we should refactor the logic...

feature
refactor
security

## Motivation Currently, lists lack built-in support for: 1. Enforcing unique values (Set-like behavior while preserving order) 2. Append-only operations (preventing value removal) These features are frequently needed when working...

refactor
api-evolution
planned

We've noticed when the sync server is busy processing incoming messages, the CPU usage is quite low. I think that the reason is that setTimeout is too aggressive as a...

pre-release

This PR makes it possible to pass CoValues from Server Components to Client Components. This way it is possible to do SSR of CoValue data that's also reactive. Example: ```ts...

# Description This PR introduces a batching system for CoValue updates. Any subscribe done from CoValue schema is now deferred and batched: ```ts Person.subscribe( person.$jazz.id, { resolve: { dogs: :...