缓存 SharedPreferences 的值有意义吗?

发布于 2024-12-14 18:48:37 字数 478 浏览 0 评论 0原文

在我当前的 Android 应用程序中,我有几个存储在 SharedPreferences 中的设置以及一个处理对它们的访问的对象。我现在想知道缓存这些值是否有意义,或者访问它们是否并不重要,例如:

public final boolean isxxxEnabled() {
    return preferences.getBoolean("xxx", false);
}

而不是

public final boolean isxxxEnabled() {
            // check if value changed
            // if not, check if value is cached
            // decide whether to return cached or new
            // cache value
    return 
}

In my current Android app I have several settings stored in SharedPreferences and one object which handles access to them. I now wonder if it makes sense to cache the values or if doesn't mater much accessing them like:

public final boolean isxxxEnabled() {
    return preferences.getBoolean("xxx", false);
}

instead of

public final boolean isxxxEnabled() {
            // check if value changed
            // if not, check if value is cached
            // decide whether to return cached or new
            // cache value
    return 
}

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

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

发布评论

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

评论(1

家住魔仙堡 2024-12-21 18:48:38

缓存共享首选项并不是真正必要的。您将获得的速度充其量也只是微不足道的,而且它会增加您必须编写的代码。我想说别打扰。

Caching shared preferences isn't really necessary. The speed up you're gonna get will be marginal at best and it's going to increase the code you have to write. I'd say don't bother.

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