PabloSLR Out of curiosity, may I ask why? I ask, because I assume the implementation of such a change is to simply change the limit number in the software -- a 1 character change. E.g. from 1,000 => 10,000 or ore would be a significant improvement with seemly little effort given there already exists a limit defined.
In scenario A: User has 10 playlists with 1k items
In scenario B: user has 1 playlist with 10k items
In scenario A: User is presumably less happy because they would rather have more items You are storing 10 + 1k (1010) database records.
In scenario B: User is more happy because they have fewer playlists when they only wanted 1. You are storing 1 + 10k (1001) database records.
Not that storage is the concern here, but in the end you actually store less total things when you have larger limits and only the users that want the larger lists will even take advantage of them.
(FWIW: Had a similar request here: https://forum.sexlikereal.com/d/7621-please-increase-playlist-item-count-limit)