How do I find more local-first architecture content like this? This is exactly what I am looking for!
@philipptanlak2 жыл бұрын
Great video! Thanks for explaining the difference. It's unreasonable for this to have only 97 views! Subscribed.
@kubre10 ай бұрын
what a gem of channel
@HVossi927 ай бұрын
Great video, I appreciate the comparison at the end, because I kept wondering about the optimized postgres version. Did you use connection pooling for the three queries?
@Graveness492010 ай бұрын
Complex query are still worth it even if there is no network latency. If we don't do join they we have to write code for doing this and it would become more error prone and complex code where as a single query could have done it. Until there is some memory concern, I don't see a point why not to have complex query for sqlite.
@m126525 ай бұрын
Great stuff thanks...
@sekomer Жыл бұрын
you are using second timing for comparison, but I think that's not right, first query directly goes and fetches data from disk, second query is. misleading and fast because first slow query was cached...