Gauthier
Gauthier
When you edit books, the author roles shown are the ones from all the books. What you are asking is to retrieve all roles available for the books' parent series....
There's a modified time on the readlist itself, but not on its content.
I was checking that part of the code recently, and it actually works, when updating a readlist content, the modified date of the readlist is updated also, as the whole...
Dupe of #230 #706
I don't understand what this is about. You mention preloading, which I would understand is about the webreader, but you also mention scanning, which has nothing to do with the...
Scanning in itself shouldn't be very slow, but analyzing new or modified books could be.
Which version were you running at the time?
You could give a spin to SQLite WAL mode with the latest `0.156.0` by setting: `komga.database.journal-mode` to `WAL`.
> Not too familiar with WAL mode, but doing some homework, I have a slight concern, how often is komga integrating checkpoints? the default. > Also, is there a way...
I made an enhancement to allow any [SQLite pragma](https://www.sqlite.org/pragma.html) ([supported by the JDBC driver](https://github.com/xerial/sqlite-jdbc/blob/3d04d7df0c89240add2c92189adb30b6cb7e6ae0/src/main/java/org/sqlite/SQLiteConfig.java#L354)) to be passed easily by the Komga configuration. For example: ```yml komga: database: pragmas: page_size: 1024...