android 上持久键值存储的最佳机制是什么(具有大值)

发布于 2024-11-04 06:23:08 字数 334 浏览 0 评论 0原文

我想在 Android 设备上使用快速键值存储,其中值是图像位图。存储应该由磁盘备份并提供一些缓存,最大限度地减少磁盘 IO。多线程访问是可取的,但不是必需的。

我查看了 Java Berkeley DB ,它似乎满足要求。还有其他性能更好的库吗?或者Berkeley DB在Android平台上表现良好吗?

我同意需要将单个键值对驻留在内存中的解决方案,但存储完整的键值对集可能会超出设备内存的大小。

I want to use a fast key-value store on an Android device where the values are image bitmaps. The store should be backed up by disk and provide some caching, minimizing disk IO. Multi-threaded access is desirable, but not required.

I've looked at Java Berkeley DB which appears to meet the requirements. Are there other libraries that perform better? Or does Berkeley DB perform well on the Android platform?

I'm OK with a solution that requires a single key-value pair to reside in memory, but storing the full key-value pair set, might exceed the size of the device's memory.

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

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

发布评论

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

评论(1

白色秋天 2024-11-11 06:23:08

我建议基于文件的内存缓存,在不使设备内存过载的情况下运行良好。
不需要任何额外的东西,特别是数据库不会是满足这种需求的最佳方式。

这里有一些库;

- https://github.com/commonsguy/cwac-cache(已弃用)

- https://github.com/wareninja/generic-store-for-android

ps 键值存储并处理基于内存文件的优化缓存

我一直在使用它们,特别是图像缓存,到目前为止,它们都表现得很好。

I would suggest File based memory caching, works well without overloading device memory.
No need for any extra stuff, esp DB won't be optimal way for such needs.

here are few libs;

- https://github.com/commonsguy/cwac-cache (deprecated)

- https://github.com/wareninja/generic-store-for-android

p.s. key-value store and handles memory-file based optimized caching

I've been using both of them especially for Image caching, both performing very well so far.

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