Android SQLite DB 中 REST/JSON Web 服务结果的本地存储

发布于 2024-10-27 12:22:39 字数 206 浏览 2 评论 0原文

我正在开发我的第一个 Android 应用程序,它基本上是专业环境中的任务管理器。 我的数据来自中央服务器,用户只能修改进度和他在特定任务上工作的小时数。 他还可以按任务名称/日期/项目/客户进行搜索... 我想知道是否需要将从服务器获取的任务存储在本地数据库中? 如果我在每个会话中获取任务,将它们全部放在一个列表中,然后在该列表上执行我的操作,应用程序是否会太慢?

提前致谢。

I'm developing my first android application which is basically a task manager in a professional context.
My data comes from a central server and the user can only modify the progression rate and the number of hours he worked on a particular task.
He can also search by task name/date/project/client...
I'm wondering if i need to store the tasks that i get from the server in a local database ?
Would the application be too slow if i get the tasks at each session,put them all in a list then preform my operations on that list ?

Thanks in advance.

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

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

发布评论

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

评论(1

烟沫凡尘 2024-11-03 12:22:39

我建议将“当前”列表存储在数据库中作为本地缓存,以处理用户没有网络连接或无法连接到服务器的情况。您可以显示最后一次已知的良好任务集,并在连接恢复时将这些任务的任何更改排队到服务器,或者在使用缓存时不允许更改。有点像只读模式。

希望这有帮助!

I would recommend storing the "current" list in a database as a local cache to handle the case where the user has no network connectivity or was unable to connect to your server. You can display the last known good set of tasks and queue up any changes from them to the server when connectivity is restored, or not allow changes when using the cache. Kind of like a read-only mode.

Hope that's helpful!

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