gpt4 book ai didi

mysql - 使用 MySQL 或 MariaDB 存储位置

转载 作者:行者123 更新时间:2023-11-29 11:21:18 25 4
gpt4 key购买 nike

我正在设计一个交通系统,我需要每分钟至少存储一次或两次车辆的位置。我想找出在这种情况下在性能和可扩展性方面选择哪种数据库更好(MySql 或 MariaDB)。如果我切换到 NoSQL 数据库(例如 MangoDB 或其他数据库)值多少钱!?

最佳答案

如果你想使用NoSQL提供的功能,你可以选择MariaDB。它有Cassandra引擎,你可以使用dynamic column在 MYSQL 引擎中像 NoSQL 一样存储数据。

在缩放方面

NoSQL’s simpler data models can make the process easier, and many have been built with scaling functionality from the start. That is a generalization, so seek expert advice if you encounter this situation

在性能方面

NoSQL’s simpler denormalized store allows you to retrieve all information about a specific item in a single request. There’s no need for related JOINs or complex SQL queries.

哪里需要 NoSQL?

  1. 不相关、不确定或不断变化的数据要求
  2. 速度和可扩展性至关重要

哪里需要 MYSQL?

  1. 可以预先确定的与逻辑相关的离散数据要求
  2. 数据完整性至关重要

编辑:

您可以查看this链接。他很好地解释了 RDBMS 与 NoSQL !!

关于mysql - 使用 MySQL 或 MariaDB 存储位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38868698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com