欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

django_orm查询性能优化方法

程序员文章站 2023-11-11 17:58:46
查询操作和性能优化 1.基本操作 增 models.tb1.objects.create(c1='xx', c2='oo') 增加一条数据,可以接受字...

查询操作和性能优化

1.基本操作

models.tb1.objects.create(c1='xx', c2='oo') 增加一条数据,可以接受字典类型数据 **kwargs
 
obj = models.tb1(c1='xx', c2='oo')
obj.save()

models.tb1.objects.get(id=123)     # 获取单条数据,不存在则报错(不建议)
models.tb1.objects.all()        # 获取全部
models.tb1.objects.filter(name='seven') # 获取指定条件的数据
models.tb1.objects.exclude(name='seven') # 获取指定条件的数据


models.tb1.objects.filter(name='seven').delete() # 删除指定条件的数据


models.tb1.objects.filter(name='seven').update(gender='0') # 将指定条件的数据更新,均支持 **kwargs
obj = models.tb1.objects.get(id=1)
obj.c1 = '111'
obj.save()                         # 修改单条数据

2.foreign key的使用原因

  • 约束
  • 节省硬盘

但是多表查询会降低速度,大型程序反而不使用外键,而是用单表(约束的时候,通过代码判断)

extra

extra(self, select=none, where=none, params=none, tables=none, order_by=none, select_params=none)
  entry.objects.extra(select={'new_id': "select col from sometable where othercol > %s"}, select_params=(1,))
  entry.objects.extra(where=['headline=%s'], params=['lennon'])
  entry.objects.extra(where=["foo='a' or bar = 'a'", "baz = 'a'"])
  entry.objects.extra(select={'new_id': "select id from tb where id > %s"}, select_params=(1,), order_by=['-nid'])

f查询

from django.db.models import f
  models.tb1.objects.update(num=f('num')+1)

q查询

方式一:

  q(nid__gt=10)
  q(nid=8) | q(nid__gt=10)
  q(q(nid=8) | q(nid__gt=10)) & q(caption='root')

方式二:
 

  con = q()
  q1 = q()
  q1.connector = 'or'
  q1.children.append(('id', 1))
  q1.children.append(('id', 10))
  q1.children.append(('id', 9))
  q2 = q()
  q2.connector = 'or'
  q2.children.append(('c1', 1))
  q2.children.append(('c1', 10))
  q2.children.append(('c1', 9))
  con.add(q1, 'and')
  con.add(q2, 'and')
 
  models.tb1.objects.filter(con)

exclude(self, *args, **kwargs)

# 条件查询
 # 条件可以是:参数,字典,q

select_related(self, *fields)

性能相关:表之间进行join连表操作,一次性获取关联的数据。

  model.tb.objects.all().select_related()
  model.tb.objects.all().select_related('外键字段')
  model.tb.objects.all().select_related('外键字段__外键字段')

prefetch_related(self, *lookups)

性能相关:多表连表操作时速度会慢,使用其执行多次sql查询  在内存中做关联,而不会再做连表查询

# 第一次 获取所有用户表
# 第二次 获取用户类型表where id in (用户表中的查到的所有用户id)
models.userinfo.objects.prefetch_related('外键字段')

annotate(self, *args, **kwargs)

# 用于实现聚合group by查询
from django.db.models import count, avg, max, min, sum
 v = models.userinfo.objects.values('u_id').annotate(uid=count('u_id'))
# select u_id, count(ui) as `uid` from userinfo group by u_id
v = models.userinfo.objects.values('u_id').annotate(uid=count('u_id')).filter(uid__gt=1)
# select u_id, count(ui_id) as `uid` from userinfo group by u_id having count(u_id) > 1
v = models.userinfo.objects.values('u_id').annotate(uid=count('u_id',distinct=true)).filter(uid__gt=1)
# select u_id, count( distinct ui_id) as `uid` from userinfo group by u_id having count(u_id) > 1

extra(self, select=none, where=none, params=none, tables=none, order_by=none, select_params=none)

# 构造额外的查询条件或者映射,如:子查询
entry.objects.extra(select={'new_id': "select col from sometable where othercol > %s"}, select_params=(1,))
entry.objects.extra(where=['headline=%s'], params=['lennon'])
entry.objects.extra(where=["foo='a' or bar = 'a'", "baz = 'a'"])
entry.objects.extra(select={'new_id': "select id from tb where id > %s"}, select_params=(1,), order_by=['-nid'])

reverse(self):

# 倒序
 models.userinfo.objects.all().order_by('-nid').reverse()
# 注:如果存在order_by,reverse则是倒序,如果多个排序则一一倒序

下面两个 取到的是对象,并且注意 取到的对象可以 获取其他字段(这样会再去查找该字段降低性能

defer(self, *fields):

models.userinfo.objects.defer('username','id')
或
models.userinfo.objects.filter(...).defer('username','id')
# 映射中排除某列数据

only(self, *fields):

# 仅取某个表中的数据
models.userinfo.objects.only('username','id')
或
models.userinfo.objects.filter(...).only('username','id')

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。