I was wondering if it's good practice to have multiple Sqlite databases? My thinking is that I would keep all my relational data in one database and have non-relational data (data that are stored in tables with no-relationship with other tables) in separate Sqlite databases to reduce the amount of concurrency that each database encounters. Would this be a good idea?
Note: There isn't much non-relational data to store. To give an idea, maybe up to 10 records per table for the non-relational data. I'm just using it for configuration data within the application. One of the non-relational tables might have up to 10000 records.
Besides the configuration data, I use multiple processes because the front-end calls a backend process to retrieve non-relatable data from a Table to update the user on what's happening close to real-time, while I have a separate process that's doing a specific task that may update that same table