首页 > 其他 > 详细

node省市区三级数据性能测评

时间:2019-09-27 09:33:07      阅读:93      评论:0      收藏:0      [点我收藏+]

闲来无事,测试下node和egg

首先是数据库,大概长这样

技术分享图片

 

 

然后是代码

‘use strict‘;

const Controller = require(‘egg‘).Controller;

class HomeController extends Controller {
  async index() {
    const { ctx } = this;
    ctx.body = ‘hi, egg‘;
  }

  async city() {
    const { ctx } = this;
    console.time("sql")
    const provinces = await this.app.mysql.select(‘provinces‘)
    const citys = await this.app.mysql.select(‘cities‘)
    const areas = await this.app.mysql.select(‘areas‘)
    console.timeEnd("sql")
    console.time(‘cal‘)
    provinces.forEach(province => {
      let provinceid = province.provinceid
      province.children = []
      citys.forEach(city => {
        city.children = []
        if (city.provinceid === provinceid) {
          province.children.push(city)
        }
        let cityid = city.cityid
        areas.forEach(area => {
          if (area.cityid === cityid) {
            city.children.push(area)
          }
        })
      })
    })
    console.timeEnd(‘cal‘)
    const result = {
      status: 1,
      data: provinces,
    }
  
    ctx.body = result;
  }
}

module.exports = HomeController;

 

执行时间:

 

技术分享图片

 

 

接着改进

‘use strict‘;

const Controller = require(‘egg‘).Controller;

class HomeController extends Controller {
  async index() {
    const { ctx } = this;
    ctx.body = ‘hi, egg‘;
  }

  async city() {
    const { ctx } = this;
    console.time("sql")
    let provinces = await this.app.mysql.select(‘provinces‘)
    let citys = await this.app.mysql.select(‘cities‘)
    let areas = await this.app.mysql.select(‘areas‘)
    console.timeEnd("sql")
    console.time(‘cal‘)
    for (let i = 0, len = citys.length; i < len; i++) {
      let city = citys[i]
      city.children = []
      let cityid = city.cityid
      for (let j = 0, len1 = areas.length; j < len1; j++) {
        let area = areas[j]
        if (area.cityid === cityid) {
          city.children.push(areas.splice(j, 1)[0])
          len1--
          j--
        }
      }
    }
    provinces.forEach(province => {
      let provinceid = province.provinceid
      province.children = []
      for (let i = 0, len = citys.length; i < len; i++) {
        let city = citys[i]
        if (city.provinceid === provinceid) {
          province.children.push(city)
          citys.splice(i, 1)
          len--
          i--
        }
      }
    })
    console.timeEnd(‘cal‘)
    const result = {
      status: 1,
      data: provinces,
    }
  
    ctx.body = result;
  }
}

module.exports = HomeController;

本次优化结果

技术分享图片

 

 可以看到,在组装数据的过程中,时间缩短了近20倍!

技术分享图片

 

 

后续版本继续优化,也欢迎有相关方面经验的大神留言探讨,给出更好的方案。

 

node省市区三级数据性能测评

原文:https://www.cnblogs.com/cangqinglang/p/11595569.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!