Decrease visible records per page

After months of usage, I rarely paginate the list, so it's not necessary
to load 100 at a time. 20 is enough.

By matching 20 records with a 20 pool size, we should keep the repo
queue time to a minimum.
This commit is contained in:
Claudio Ortolina
2024-12-15 11:15:46 +03:00
parent 35435e11c0
commit 6660d195e4
4 changed files with 10 additions and 14 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ DATABASE_PATH = '/mnt/music_library/music_library_prod.db'
PHX_HOST = 'music-library.claudio-ortolina.org'
PORT = '8080'
LAST_FM_USER = 'cloud8421'
POOL_SIZE = '10'
POOL_SIZE = '20'
[[mounts]]
source = 'music_library'