|
|
|
|
|
by chipdart
633 days ago
|
|
> The "Fast" part is a little funny. If you don't care about joins, then row inserts and retrievals are pretty damn fast too =) What makes SQLite exceptionally fast in a server environment is that you do not require a network call to do the query or even retrieve the data. Your remarks about joins and transactions are meaningless once you understand you're just reading stuff from your very own local HD, which is already orders of magnitude faster. |
|
Modern cloud architecture hates local sockets and wants to push everything to the network, but if you care about performance and are using Redis, that’s how you’d favor deploying & connecting to it.