Dr. Quadragon ❌@mastodon.ml to linuxmemes@lemmy.world · 1 day agoThe Unix Way, everybody!mastodon.mlimagemessage-square74fedilinkarrow-up1647arrow-down17file-text
arrow-up1640arrow-down1imageThe Unix Way, everybody!mastodon.mlDr. Quadragon ❌@mastodon.ml to linuxmemes@lemmy.world · 1 day agomessage-square74fedilinkfile-text
minus-squareFooBarrington@lemmy.worldlinkfedilinkarrow-up7·6 hours agoIt also makes you re-implement a database, but worse. Use a JSON file if you just need to serialize/deserialize some data. Use SQLite or a DB server if you need more. Your own code will never match the quality of SQLite.
It also makes you re-implement a database, but worse.
Use a JSON file if you just need to serialize/deserialize some data. Use SQLite or a DB server if you need more. Your own code will never match the quality of SQLite.
Sqlite is the best in most cases