什么可以提供更好的性能:Django 中的 name__iexact=name 或 name=name.lower() ?

发布于 2024-11-09 02:44:13 字数 148 浏览 0 评论 0原文

我正在尝试决定是否要在过滤器查询中使用 name__iexact=namename=name.lower() 。什么可以提供更好的性能?如果我始终将名称存储为小写。

如果重要的话,字符串不超过 10 个字符。

I'm trying to decide if I want to use name__iexact=name or name=name.lower() in a filter query. What gives better performance? If I'm storing name always as lowercase.

The strings are not bigger than 10 characters if that matters.

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

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

发布评论

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

评论(1

匿名的好友 2024-11-16 02:44:13

执行 name=name.lower() 会表现得更好,因为您只执行一次小写(或者不需要它,因为您提到您已经将其存储为小写),然后与数据库中的相等性进行比较 执行

name__iexact=name 将速度会慢一些,因为 ORM 将执行“LIKE”而不是“=”,从而评估它是否与每行的大写或小写匹配。

Doing name=name.lower() would perform better as you're only doing the lowercasing once (or it would not be needed since you mention you already stored it in lowercase) and then comparing with equality in the DB

Doing name__iexact=name will be a little slower as the ORM will perform a "LIKE" instead of "=", thus evaluating whether it matches for upper or lower case on each row.

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