SQLite:selectall_arrayref速度问题

发布于 2024-12-03 20:26:05 字数 237 浏览 0 评论 0原文

这两种modi的速度有区别吗?

selectall_arrayref( "SELECT * FROM $table", { Slice => { a => 1, b => 1 } } );

selectall_arrayref( "SELECT a, b FROM $table", { Slice => {} } );

Is there a difference in speed between these two modi?

selectall_arrayref( "SELECT * FROM $table", { Slice => { a => 1, b => 1 } } );

selectall_arrayref( "SELECT a, b FROM $table", { Slice => {} } );

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

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

发布评论

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

评论(1

云巢 2024-12-10 20:26:05

是的,因为 Slice 正在客户端进行后处理。因此,后一个示例将仅发送记录集中的 ab 列。如果 $table 中有更多列,则后面的调用会更便宜且更快。

Yes, because the Slice is doing post-processing on client side. So latter example will send only columns a and b in record-set. If there is more columns in the $table, latter call would be less expensive and faster.

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