We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f3a0a2 commit 8fafb77Copy full SHA for 8fafb77
src/powersync/System.ts
@@ -72,4 +72,8 @@ export const powerSync = new PowerSyncDatabase({
72
await connector.signInAnonymously();
73
74
// Establish connection between PowerSync and the Supabase connector
75
-powerSync.connect(connector, { clientImplementation: SyncClientImplementation.RUST });
+powerSync.connect(connector, {
76
+ // Rust based implementation is more efficient and faster than the JavaScript implementation
77
+ clientImplementation: SyncClientImplementation.RUST,
78
+ crudUploadThrottleMs: 5000
79
+});
0 commit comments