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
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
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
0 commit comments