SQLite 是否因为无服务器而更快?

发布于 2024-10-25 17:49:05 字数 68 浏览 1 评论 0原文

当使用基于服务器的数据库引擎时,通信会消耗一些时间。由于 SQLite 是无服务器的,它是否比基于服务器的数据库引擎更快?

When using server-based database engines, some time will be consumed for communication. Since SQLite is serverless, does it make it faster than server-based database engines?

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

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

发布评论

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

评论(1

勿忘初心 2024-11-01 17:49:05

我不认为这个问题与“无服务器”有关,请注意,SQLite 比其他已知系统有更多的限制(存储过程、写入视图......阅读 此处)。
此外,应用程序通过简单的函数调用来使用SQLite的功能,这减少了数据库访问的延迟——单个进程内的函数调用比进程间通信更有效。

查看关系数据库管理系统的比较

I dont think this issue has with "Serverless" to do, notice that the SQLite has much more limitations than other known systems (Stored Procs, write to views ... Read here).
Besides The application program uses SQLite's functionality through simple function calls, which reduce latency in database access – function calls within a single process are more efficient than inter-process communication.

Check this Comparison of relational database management systems

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文