Reply to thread

I can imagine that full-heartedly

Persisting stuff in a database (in this case a flat file) is expensive, but sometimes (not in Mediaportal scenario I expect) needed so other users of the database have the most uptodate view of the data.


What needs to be done (either by examining code or waiting for complaints :imp: ) is make sure that all places where possible iterations can occurr are handled correctly. Don't know if there are any places where f.e. data is fetched lazily from the database to populate a listview (and only visible items are fetched) and then user repeatedly pressing pagedown...

In the end you cannot easily batch those to use a single connection for that.

But as I said... overthinking maybe


Top Bottom