is this a reasonable target load for SQLite?
We are in analysis mode for an embedded Linux system which will use an ARM9 processor around 400 megahertz.
It would have multiple sensors and we would need to write logs to a SQLite 3 database. We estimate the maximum load imaginable would be between 100 开发者_如何转开发and 200 database inserts per second.
Is this reasonable or should we go have our heads examined?
I think it is unreasonable to write logs into db. SQL databases are developed with assumption of frequently reading and not writing.
精彩评论