Android SQLite DB 中 REST/JSON Web 服务结果的本地存储
我正在开发我的第一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议将“当前”列表存储在数据库中作为本地缓存,以处理用户没有网络连接或无法连接到服务器的情况。您可以显示最后一次已知的良好任务集,并在连接恢复时将这些任务的任何更改排队到服务器,或者在使用缓存时不允许更改。有点像只读模式。
希望这有帮助!
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!