Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序,当互联网不可用时,它也可以在离线模式下工作。在离线模式下,用户将他的数据保存在 android localDB(sqlite) 中。一旦互联网可用,我将开始将 android localDB(sqlite) 与我的 serverDB 同步。有什么最好的方法来实现这种功能?先谢谢了。
我在我的一个应用程序中具有相同的同步。
我首先通过网络服务将数据发送到服务器,然后重置我的数据库并通过网络服务从服务器获取最新数据..
我将服务器上保存的高核数据与一些 5K 移动设备同步。每个高分条目从设备到达时都有服务器生成的时间戳。移动设备知道它已经看到的高分条目的最新时间戳,并且仅从具有更大时间戳的服务器请求条目。