如何将远程数据库MongoDB与本地DB Sqlite同步?

发布于 2025-01-21 10:11:59 字数 105 浏览 0 评论 0原文

我被分配了一个任务,将本地数据库(SQLite)与远程数据库MongoDB同步,尽管我知道如何单独实现本地db和mongodb,但我在扑朔迷离中非常新,但不知道如何同步并在数据时使其可用是离线的。

I am assigned with a task to sync local DB(Sqlite) with Remote DB MongoDB and I am very new in flutter though I got idea how to implement local DB and MongoDB separately but don't know how to sync and make it available when data is offline.

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

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

发布评论

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

评论(1

尘世孤行 2025-01-28 10:11:59

当您的应用从服务器接收数据(JSON)数据时,将数据保存为SQLite上的地图。但是我不确定SQLite是否能够保存这种格式。就我而言,我使用cached_map库保存来自mongodb的数据,然后将数据加载回并在我的应用程序上显示。

库: https://pub.dev/packages/cached_map

强>

class AppCache {
  static Mapped? mapped;

  static initCache() async {
    mapped = await Mapped.getInstance();
  }

  static saveCacheV2(dynamic value, String serverFeatures) async {
    String message = await Mapped.saveFileDirectly(
        file: value, cachedFileName: serverFeatures);
    print(message);
    // print("cache async save");
  }

  static Future<Map<String, dynamic>?> loadCacheV2(
      String serverFeatures) async {
    return await Mapped.loadFileDirectly(cachedFileName: serverFeatures);
  }

  static saveCache(dynamic value, String serverFeatures) {
    //save a file
    mapped?.saveFile(file: value, cachedFileName: serverFeatures);
  }

  static Map<String, dynamic>? loadCache(String serverFeatures) {
    return mapped?.loadFile(cachedFileName: serverFeatures);
  }
}

保存数据

  AppCache.saveCacheV2(
          response.toMap(), ServerFeatures.jawatanKosongFunction);

负载数据

var cache = AppCache.loadCacheV2(ServerFeatures.jawatanKosongFunction);
    cache.then((response) {
      if (response != null) {
        setValue(SenaraiJawatanKosongResponse.fromMap(response));
        print("cache load");
      }
    });

When your app receives data (JSON) data from the server, save your data as Map on Sqlite. But I'm not sure if Sqlite is able to save those kinds of formats. In my case, Im using cached_map library to save data from MongoDB then load data back and display it on my app.

Library: https://pub.dev/packages/cached_map

Below Example code.

class AppCache {
  static Mapped? mapped;

  static initCache() async {
    mapped = await Mapped.getInstance();
  }

  static saveCacheV2(dynamic value, String serverFeatures) async {
    String message = await Mapped.saveFileDirectly(
        file: value, cachedFileName: serverFeatures);
    print(message);
    // print("cache async save");
  }

  static Future<Map<String, dynamic>?> loadCacheV2(
      String serverFeatures) async {
    return await Mapped.loadFileDirectly(cachedFileName: serverFeatures);
  }

  static saveCache(dynamic value, String serverFeatures) {
    //save a file
    mapped?.saveFile(file: value, cachedFileName: serverFeatures);
  }

  static Map<String, dynamic>? loadCache(String serverFeatures) {
    return mapped?.loadFile(cachedFileName: serverFeatures);
  }
}

Save data

  AppCache.saveCacheV2(
          response.toMap(), ServerFeatures.jawatanKosongFunction);

Load data

var cache = AppCache.loadCacheV2(ServerFeatures.jawatanKosongFunction);
    cache.then((response) {
      if (response != null) {
        setValue(SenaraiJawatanKosongResponse.fromMap(response));
        print("cache load");
      }
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文