Skip to content

Commit 77d605c

Browse files
committed
update scalable sqlite
1 parent fed804b commit 77d605c

File tree

2 files changed

+20
-8
lines changed

2 files changed

+20
-8
lines changed

MyApp/_pages/ormlite/scalable-sqlite.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,16 @@ and Cloud Providers building distributed databases on top of SQLite like
1616
[Cloudflare D1](https://blog.cloudflare.com/introducing-d1/) and Fly.io's
1717
multi-region distributed [LiteFS](https://fly.io/docs/litefs/) solution.
1818

19-
SQLite is highly-performant and can handle a large number of concurrent read operations and its
20-
write operations are roughly [35% Faster](https://www.sqlite.org/fasterthanfs.html)
21-
than writing to the Filesystem directly with very low latency that's often faster than other RDBMS's
22-
courtesy of its proximity to the running application.
19+
SQLite is a highly-performant DB that can handle a large number of concurrent read operations and
20+
[35% Faster](https://www.sqlite.org/fasterthanfs.html) filesystem performance for write operations with next
21+
to no latency that's often faster than other RDBMS's courtesy of its proximity to the running application which gives it unique advantages over traditional client/server RDBMS's where it's not susceptible to the
22+
[N+1 Queries problem](https://www.sqlite.org/np1queryprob.html) and is also able to execute your
23+
custom C# Logic inside SQL Queries using [Application SQL Functions](https://www.sqlite.org/appfunc.html).
24+
25+
With [litestream.io](https://litestream.io) taking care of real-time replication to managed storage
26+
we just need to workaround SQLite's single concurrent writer to unlock the value, performance and
27+
unique features of SQLite in our Apps which we cover in this release with integrated support for
28+
Database Locks and Sync Commands.
2329

2430
## Single Concurrent Writer
2531

MyApp/_pages/releases/v8_04.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,10 +1002,16 @@ and Cloud Providers building distributed databases on top of SQLite like
10021002
[Cloudflare D1](https://blog.cloudflare.com/introducing-d1/) and Fly.io's
10031003
multi-region distributed [LiteFS](https://fly.io/docs/litefs/) solution.
10041004

1005-
SQLite is highly-performant and can handle a large number of concurrent read operations and its
1006-
write operations are roughly [35% Faster](https://www.sqlite.org/fasterthanfs.html)
1007-
than writing to the Filesystem directly with very low latency that's often faster than other RDBMS's
1008-
courtesy of its proximity to the running application.
1005+
SQLite is a highly-performant DB that can handle a large number of concurrent read operations and
1006+
[35% Faster](https://www.sqlite.org/fasterthanfs.html) filesystem performance for write operations with next
1007+
to no latency that's often faster than other RDBMS's courtesy of its proximity to the running application which gives it unique advantages over traditional client/server RDBMS's where it's not susceptible to the
1008+
[N+1 Queries problem](https://www.sqlite.org/np1queryprob.html) and is also able to execute your
1009+
custom C# Logic inside SQL Queries using [Application SQL Functions](https://www.sqlite.org/appfunc.html).
1010+
1011+
With [litestream.io](https://litestream.io) taking care of real-time replication to managed storage
1012+
we just need to workaround SQLite's single concurrent writer to unlock the value, performance and
1013+
unique features of SQLite in our Apps which we cover in this release with integrated support for
1014+
Database Locks and Sync Commands.
10091015

10101016
## Single Concurrent Writer
10111017

0 commit comments

Comments
 (0)