|
|
|
|
|
by ris58h
1329 days ago
|
|
And how does it help in case of frontend development? A half of those points don't apply to web dev.
Do you really need joins?
Do you really need atomic transactions?
Do you really need SQL?
Most of API's that used by web apps operate with objects or arrays of objects. Why should we add complexity of SQL if we already can store those objects in a plain array? |
|
Edit: Additionally, I encourage you to experiment with this. If you haven’t already, you may be surprised at how efficient/compact SQLite files are. They’re significantly more compact that JSON or XML documents and can include binary files like images. It’s much simpler to use SQLite as a file format than to create a custom binary file format.