I'm currently building a project in which for every user I need to save a list of Strings (urls of articles he read).
I'm using python + flask + SQLalchemy with sqlite.
I understand that sqlite doesn't support arrays, so I was thinking about switching over to a different database instead of sqlite, one which supports arrays.
I would like to know what would you do? which database supports arrays or if there's better way solving it.