swingmx / swingmusic

Swing Music is a beautiful, self-hosted music player for your local audio files. Like a cooler Spotify ... but bring your own music.
https://swingmx.com
MIT License
718 stars 41 forks source link

Store and read data in the database instead of memory. #69

Closed cwilvx closed 2 years ago

cwilvx commented 2 years ago

Storing data in memory together with the database is hectic. This is because most of the times, data in the database is not similar to the one in memory.

This inconsistencies are raising bugs. To avoid this, let's store data in the database, and read data from the database. This means that most of the operations like searching will rely on the database. SQL here I come.