传感器持久性方法

发布于 2024-10-31 13:49:39 字数 190 浏览 0 评论 0原文

我想保存加速度计、陀螺仪等传感器的数据,但我不知道使用“快速”或“游戏”选择的最佳方法是什么。 例如,我可以考虑在内存中保存10秒的数据,然后批量插入到数据库中,这样我就不会以20ms的速度保存到数据库并阻塞手机,但我不知道多少一次可以插入 1000 条记录。 还有其他方法吗?我的目标是在所需的时间将数据库中的记录发送到指定的 Web 服务。 提前致谢。吉列尔莫.

I'd like to save sensors like accelerometer, gyroscope, etc data and I don't know what's the best approach for that using a FAST or GAME selection.
For example, I can think of saving 10 seconds of data in memory, and then making a batch insert into the database so I will not saving at a rate of 20ms to the database and block the phone, but I don't know how much time it could take a bath insert of 1000 records.
Any other approach? My goal would be that at a desired time the records in the database will be sent to a specified web service.
Thanks in advance. Guillermo.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

牵强ㄟ 2024-11-07 13:49:39

当我在内存中保存 5000 个事件并随后在 iPhone 上将其打印到控制台以进行一些离线研究时,我也做了类似的事情。除了 iPhone 控制台总体表现迟缓之外,它的表现还不错。

那么您真的需要 Web 服务并因此需要大量用户数据吗? (我希望用户知道老大哥正在看着他们;-)好吧,如果是这样,您应该考虑使用压缩并发送二进制数据,特别是如果用户没有连接到他们的 WLAN。

I did something similar when I kept 5000 events in memory and printed it out to the console afterwards on iPhone to do some offline research. Besides the sluggish behaviour of the iPhone console in general it worked out pretty good.

So do you really need a web service and thus a bunch of user data? (I hope the users know that big brother is watching them ;-) Well, if so you should consider using compression and send out binary data, expecially if the users are not connected to their WLAN.

Kay

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文