繁体   English   中英

从 Google Cloud Firestore 快速获取数据

[英]Fetching data really fast from Google cloud firestore

我正在制作一个 flutter 应用程序,我正在使用 cloud firestore 作为我的在线数据库。 我的应用程序中的一项功能是寻找附近的用户并在屏幕上的自定义小部件中向当前用户显示他们的个人资料。 我这样做的方法是获取当前用户的位置(实时位置或保存在数据库中的地址),然后为用户检查数据库集合中的每个用户。 我从存储的数据中获取用户的地址,使用距离矩阵 API 计算距离,然后如果距离小于特定数字(例如 10000 米),我会为用户创建配置文件小部件以在屏幕上显示它。

有2个问题:

1-如果我的用户数量增加(例如一百万用户),通过查看每个用户详细信息并计算距离,在屏幕上获得结果可能需要很长时间。 目前,我只有 20 个用户用于测试目的,当我搜索附近的用户时,结果可能需要 30 秒才能显示在屏幕上。

2- 在互联网连接速度较慢的情况下,等待时间可能会更长,并且它可以使用大量用户数据来完成这项简单的任务。

如何改进此功能并使其更快?

(我目前的想法是将用户的位置划分到不同的文档中,然后使用当前用户的位置仅浏览其中一个文档。问题是如何有效地划分地址并找到最佳地址为了。)

下面是我找到附近用户并将他们添加到我传递给我的自定义小部件类的列表中的代码。

final List<UserBoxDesign> listOfBoxes = [];
final FirebaseUser currentUser = await auth.currentUser();
final String currentUserId = currentUser.uid;
if (_userLocationSwitchValue == false) { //use default address of the user
  currentUserAddress = await _databaseManagement.getUserCollectionValues(
      currentUserId, "address");
} else {
  //currentUserAddress = //to do, get device location here.
}
if (_searchValue == SearchValues.Users) {
  final List<String> userIds = await _databaseManagement.getUserIds();
  for (String id in userIds) {
    final String otherUserLocations =
        await _databaseManagement.getUserCollectionValues(id, "address");
    final String distanceMeters = await _findDistanceGoogleMaps(
        currentUserAddress, otherUserLocations);
    if (distanceMeters == "Address can't be calculated" ||
        distanceMeters == "Distance is more than required by user") {
      //if it's not possible to calculate the address then just don't do anything with that.
    } else {
      final double distanceValueInKilometers = (double.parse(
                  distanceMeters) /
              1000)
          .roundToDouble(); 
      final String userProfileImageUrl =
          await _databaseManagement.getUserCollectionValues(id, "image");
      final String username =
          await _databaseManagement.getUserCollectionValues(id, "username");
      listOfBoxes.add(
        UserBoxDesign( //it creates a custom widget for user if user is nearby
          userImageUrl: userProfileImageUrl,
          distanceFromUser: distanceValueInKilometers,
          userId: id,
          username: username,
        ),
      ); //here we store the latest values inside the reserved data so when we create the page again, the value will be the reservedData value which is not empty anymore

    }
    print(listOfBoxes);
  }
  listOfBoxes.sort((itemA,itemB)=>itemA.distanceFromUser.compareTo(itemB.distanceFromUser)); //SORTs the items from closer to more far from user (we can reverse it to far comes first and close goes last)
  setState(() {
    _isSearchingForUser = false;
  });
  return listOfBoxes;

这是我计算起始地址和目标地址之间距离的代码。

Future<String> _findDistanceGoogleMaps(
  String originAddress, String destinationAddress) async {
final String url =
    "https://maps.googleapis.com/maps/api/distancematrix/json?units=metric&origins=$originAddress&destinations=$destinationAddress&key=$GoogleMapsAPIKey";
try {
  final response = await http.get(url);
  final responseDecoded = json.decode(response.body);

  final distanceInMeters = double.parse(responseDecoded["rows"][0]
          ["elements"][0]["distance"]["value"]
      .toString()); //this is the value in meters always so for km , divide by 1000.
  if (distanceInMeters < 100000) {
    return distanceInMeters.toString();
  } else {
    return "Distance is more than required by user";
  }
} catch (e) {
  return "Address can't be calculated";
}

}

当我找到附近的用户时,这就是我的屏幕外观。

如果您给出代码示例,则很容易回答。 我可以建议(我们有类似的任务)使用坐标经度和纬度并在您的范围内提出请求。

所以你不需要距离矩阵 API(我认为它会很昂贵)并且你的查询将快速而便宜。

我用谷歌搜索并在这里找到了答案如何使用 firestore 运行地理“附近”查询?

==更新问题后==

  1. 您尝试使用 screen 内的所有逻辑并同步执行。 正因为如此,你有这么长的渲染时间。 您计算用户设备上的所有内容并传递给小部件return listOfBoxes; 相反,您可以尝试使用 Streambuilder,示例在此处如何在 flutter 中有效访问 firestore 引用字段的数据?

  2. 以这样的方式组织数据库中的数据,您可以根据自己的目的提出请求: "Find all users within X range sorted by distance AND ..." 在这种情况下,Firebase 会非常快速地完成并将数据异步传递给您的 Streambuilder。 我猜你可以保留经度、纬度并使用它们而不是地址。

抱歉,我无法重写您的代码,信息不足。 只需通过链接查看示例,就有一个很好的示例。

==更新2==

https://pub.dev/packages/geoflutterfire允许将地理数据存储到 Firestore 以及如何发出请求

// Create a geoFirePoint
GeoFirePoint center = geo.point(latitude: 12.960632, longitude: 77.641603);

// get the collection reference or query
var collectionReference = _firestore.collection('locations');

double radius = 50;
String field = 'position';

Stream<List<DocumentSnapshot>> stream = geo.collection(collectionRef: collectionReference)
                                        .within(center: center, radius: radius, field: field);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM