写入应用程序内部存储 - 频率限制?

发布于 2024-12-25 12:00:49 字数 170 浏览 1 评论 0原文

我有一个应用程序,它定期接收文件并将它们保存在内部存储中(即 data/data/app_name/files),通过电子邮件发送它们,最后删除它们。一切工作正常,但我想知道我可以写入内部存储的次数是否有限制。我当前的应用程序重复写入和删除数据 - 这是必需的。使用高速缓冲存储器会更好吗?

预先感谢您的帮助。

I have an application which periodically receives files and saves them in the internal storage (i.e. data/data/app_name/files), sends them via email, and finally deletes them. It is all working fine, but I'm wondering if there is a limit to how many times I can write to the internal storage. My current application repeatedly writes and deletes data - which is required. Would it be better to use the cache memory?

Thanks in advance for your help.

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

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

发布评论

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

评论(1

故人如初 2025-01-01 12:00:49

但我想知道我可以写入内部存储的次数是否有限制

没有。最终,闪存单元将会磨损。每天尽量不要进行数万次 I/O 操作,应该没问题。

使用缓存会更好吗?

缓存存储与您已使用的内部存储位于同一内部存储上。

but I'm wondering if there is a limit to how many times I can write to the internal storage

Not really. Eventually, the flash cells will wear out. Try not to do tens of thousands of I/O operations per day, and you should be OK.

Would it be better to use the cache memory?

Cache storage is on the same internal storage as is the internal storage that you are already using.

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