←back to thread

75 points markusw | 1 comments | | HN request time: 0.248s | source
Show context
bob1029 ◴[] No.45335217[source]
I think this is a great idea for testing. MSSQL has LocalDB which is used a lot throughout the .NET ecosystem:

https://learn.microsoft.com/en-us/sql/database-engine/config...

For heavy duty production use (i.e., pushing the actual HW limits), I would feel more comfortable with the SQLite vertical. Unix sockets are fast, but you are still going across process boundaries. All of SQLite can be ran on the same thread as the rest of the application. This can dramatically reduce consumption of memory bandwidth, etc.

replies(2): >>45335319 #>>45337413 #
1. markusw ◴[] No.45337413[source]
I am so tempted to benchmark some more… :D Would be great to get some numbers on this, super interesting.