什么可以提供更好的性能:Django 中的 name__iexact=name 或 name=name.lower() ?
我正在尝试决定是否要在过滤器查询中使用 name__iexact=name
或 name=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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行 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.