这是 SQLite 的合理目标负载吗?
我们正处于嵌入式 Linux 系统的分析模式,该系统将使用大约 400 MHz 的 ARM9 处理器。
它有多个传感器,我们需要将日志写入 SQLite 3 数据库。我们估计可想象的最大负载为每秒 100 到 200 次数据库插入。
这是合理的还是我们应该去检查一下我们的头脑?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为将日志写入db是不合理的。 SQL数据库是在频繁读取而不是写入的假设下开发的。
I think it is unreasonable to write logs into db. SQL databases are developed with assumption of frequently reading and not writing.