在Android中高效记录流数据

发布于 2024-10-06 05:23:02 字数 162 浏览 3 评论 0原文

我正在 Android 中以 5Hz 频率记录传感器数据(加速度计、指南针、wifi)。我不那么频繁地扫描 Wifi。

我正在使用文本文件。当内存中有 1000 条数据记录时,我将它们附加到一个文本文件中。

然而这种方法似乎很慢。使用 SQLite 数据库会比纯文本文件更快吗?

I am recording sensor data (accelerometer, compass, wifi) in Android in 5Hz frequence. I don't scan Wifi that frequently.

I am using text file. When I have 1000 data records in memory, I append them into a text file.

However this method seems quite slow. Will using a SQLite database be faster than plain text file?

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

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

发布评论

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

评论(1

っ左 2024-10-13 05:23:02

一种方法可能是使用双缓冲列表,当一个队列已满时,开始填充下一个队列,同时让另一个线程将完整队列异步写入磁盘,然后清除它(然后继续重复)。

如果您想加快速度,您还可以尝试轻松地使其成为三重缓冲或第 n 缓冲。

One approach may be to use a double buffered list, when one queue is full, start filling the next one and in the meantime have another thread write the full queue out to disk asynchronously then clear it (and then keep repeating).

You can also experiment to easily make it triple buffered or nth buffered if you like to make faster.

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