I currently have several small applications <500 lines. I intend to eventually run them on a small LINUX ARM unit. Is it better to combine these applications and use streams or continue to use them as two separate applications?
These applications plus a very small website use a small sqlite database, although only one of the applications writes everything that it currently reads. Due to limitations in the target field, I am using Python 2.6.
I use SQLite to prevent data loss for several days of use. There is no direct interaction between the two applications, although it is possible to lock the database, especially during the maintenance of the data period. Stopping these issues is troubling and the footprint of the two applications, since the target devices are quite small.
source share