Daniel Kempner

Results 10 comments of Daniel Kempner

Linking some similar threads for context: https://github.com/react-native-voice/voice/issues/293#issuecomment-1087495863 https://github.com/react-native-voice/voice/issues/394#issuecomment-1351776055

@jpvajda it's not network latency it's 300ms of CPU time (mosly from Apollo's cache), since in the template repo all data is local to the Apollo cache. I use chrome...

Yes it's definitely all about `InMemoryCache`'s performance. We found a few bottlenecks, especially in writes where `broadcastWatches` iterates over every watcher on the page for every write. It became a...

[Fix CI](https://github.com/vadimdemedes/ink/pull/607)

> Related issues: > > * **[Bug: React 19 - Suspense Siblings Fall Back to Sequential Loading Under Load #12692](https://github.com/apollographql/apollo-client/issues/12692)** > > Was this useful? Use the reactions below to...

Thanks @phryneas ! As an update I was able to create a workaround called ApolloSuspenseFixer ([Source](https://codesandbox.io/p/devbox/apollo-suspense-sequential-load-forked-2zjmh7?file=%2Fsrc%2FApp.tsx%3A72%2C10-72%2C29&workspaceId=ws_UDJEgZa39rNAS1JzBhdCXd)). I don't yet understand why it works, but it seems to work. Maybe that'll...

@phryneas sorry I spoke too soon. My fix worked only occasionally so it's not really revealing about the nature of the problem. Unfortunately I've already ruled out the first render...

Thanks @phryneas . So far I'm not in love with the suspenseful hooks. In a way they kind of remind me of `async` functions because they don't play well with...

Thanks for the links!! --- --- It'll be quite a migration to adopt everywhere for my team. Obviously that takes nothing away from what you're doing, but it makes the...

I've started a [WIP PR](https://github.com/apollographql/apollo-client/pull/12767) in case you're interested.