You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The sync stack now supports defining the chunking behavior during initial hydration. Chunking remains enabled by default.
6
+
7
+
Chunking is useful to avoid blocking the main thread for too long, but it can lead to updates that happened in the same block being split across multiple chunks.
8
+
If chunking is enabled, clients should account for this by waiting for full hydration before using the update stream.
9
+
If atomicity of updates is important and blocking the main thread is not an issue, set this to `false`.
* Optional flag to define the chunking behavior during the initial hydration. Defaults to `true`.
115
+
* Chunking is useful to avoid blocking the main thread for too long, but it can lead to updates that happened in the same block being split across multiple chunks.
116
+
* If chunking is enabled, clients should account for this by waiting for full hydration before using the update stream.
117
+
* If atomicity of updates is important and blocking the main thread is not an issue, set this to `false`.
0 commit comments