摘要: 下文方案整理 由于mysql btree结构,无法快速定位offset,当offset特别大时,需要扫描数据也较大。以下几种方式 【适用小数据量】首先进行sql优化。但使用orm时可能需要使用row sql ,但当数据量持续增长时无解(如仅查id结果集也非常大,offset又非常大时依然无法快速定位 阅读全文
posted @ 2018-09-02 15:13 EngineTang 阅读(2043) 评论(0) 推荐(0) 编辑
摘要: 分页代码 from rest_framework.pagination import PageNumberPagination,LimitOffsetPagination,CursorPagination class MyPagination(PageNumberPagination): # 分页 阅读全文
posted @ 2018-09-02 14:52 EngineTang 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 1.common serializer.py #/usr/bin/env python3 # -*- coding:utf-8 -*- # mail: infaaf@126.com from app01.models import UserGroup,UserInfo,Role from rest_ 阅读全文
posted @ 2018-09-02 11:17 EngineTang 阅读(154) 评论(0) 推荐(0) 编辑