Skip to content

Commit 367a5cc

Browse files
author
Hein
committed
Minor update to supabaseConnector
1 parent 3b1bcea commit 367a5cc

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tutorials/code-changes/supabase-connector-performance.mdx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: "In this tutorial we will show you how to improve the performance o
55

66
# Background
77

8-
The demos in the [powersync-js](https://github.com/powersync-ja/powersync-js/tree/main/demos) monorepo provide a minimal working example that illustrate the use of PowerSync with different frameworks..
8+
The demos in the [powersync-js](https://github.com/powersync-ja/powersync-js/tree/main/demos) monorepo provide a minimal working example that illustrate the use of PowerSync with different frameworks.
99
The demos are therefore not necessarily optimized for performance and can therefore be improved.
1010

1111
This tutorial demonstrates how to improve the Supabase Connector's performance by implementing two batching strategies that reduce the number of database operations.
@@ -270,13 +270,10 @@ The two batching strategies that will be implemented are:
270270
<Card title="Sequential Merge Strategy">
271271
You need more granular control over batch sizes
272272
273-
Memory might be constrained
274-
275273
You want more detailed operation logging
276274
277275
You need to handle mixed operation types more efficiently
278276
<br />
279-
<br />
280277
**Best for**: Mixed operation types
281278
<br />
282279
**Optimizes for**: Memory efficiency
@@ -285,8 +282,6 @@ The two batching strategies that will be implemented are:
285282
</Card>
286283
<Card title="Pre-sorted Batch Strategy">
287284
You have a large number of similar operations.
288-
289-
Memory isn't a constraint.
290285
291286
You want to minimize the number of network requests.
292287
<br />

0 commit comments

Comments
 (0)