溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

減少與數(shù)據(jù)庫的連接,提高請求效率

發(fā)布時間:2020-07-21 05:33:56 來源:網(wǎng)絡(luò) 閱讀:764 作者:建波李 欄目:數(shù)據(jù)庫


工時系統(tǒng)代碼優(yōu)化記錄:

在查看工時詳情的時候,我們需要將個人的工時分項目,每月進行一個展示。

一年有12個月,一個人有多個項目。

初始代碼只是為了實現(xiàn)功能,所以在代碼中進行的循環(huán)操作,即每個項目每月到數(shù)據(jù)庫中獲取該用用戶的工時統(tǒng)計。

這樣就造成了多次請求數(shù)據(jù)庫,強求效率很低。差不多查詢一次要2500ms的時間。這樣肯定的不行的。

優(yōu)化:優(yōu)化采用每個項目只與數(shù)據(jù)庫建立一次連接。采用存儲過程進行調(diào)用。

這樣就將數(shù)據(jù)庫的連接次數(shù)大大減少了。


以下是沒有優(yōu)化前的代碼。

工時系統(tǒng):
查看工時詳情,(4個項目為例子)
原來的代碼請求數(shù)據(jù)庫2*12*4+1=97次。
優(yōu)化后的數(shù)據(jù),請求數(shù)據(jù)庫5次(首先查詢所有的項目,然后每個項目去查詢一次。)

		/*
		 * 查詢項目在每月已提交的工時
		 */
		// 查詢每個人的項目id
		List<WorkDetail> workDetailList = workDetailManager.getProjectIdByUser(userId);//第一次
		List<Project> projectList = new ArrayList<>();
		for (WorkDetail workDetail : workDetailList) {//循環(huán)4次
			Integer projectId = workDetail.getProjectId();
			Project project = projectManager.get(projectId);
			// 每月去查詢
			for (int i = 0; i < countMonth; i++) {//循環(huán)12次
				Double reportCount = new Double("0");
				String workDay = String.valueOf(year) + months[i];
				WorkDetailQuery query = new WorkDetailQuery();
				query.setState(10);
				query.setProjectId(projectId);
				query.setUserId(userId);
				// 如果當(dāng)月還沒有到月底,統(tǒng)計至當(dāng)天的前一天為準(zhǔn)。
				Integer beforNowDay = Integer.valueOf(dateStr) - 1;
				if (workDay.equals(dateStr.substring(0, 6))) {
					query.setStartDate(workDay + "01");
					query.setEndDate(beforNowDay.toString());
					query.setWorkType("FUL");
					Integer fulCount1 = workDetailManager.count(query);//查詢是半天還是全天  每月循環(huán)一次
					query.setWorkType("PAR");
					Integer parCount1 = workDetailManager.count(query);//查詢是半天還是全天  每月循環(huán)一次
					reportCount = (parCount1.doubleValue() / 2) + fulCount1.doubleValue();
				} else {
					query.setWorkDay(Integer.valueOf(workDay));
					query.setWorkType("FUL");
					Integer fulCount = workDetailManager.count(query);
					query.setWorkType("PAR");
					Integer parCount = workDetailManager.count(query);
					reportCount = (parCount.doubleValue() / 2) + fulCount.doubleValue();
				}
				if (reportCount == 0.0) {
					reportCount = null;
				}
				// 保存到每個月
				if ("01".equals(months[i])) {
					project.setJanCount(reportCount);
				} else if ("02".equals(months[i])) {
					project.setFebCount(reportCount);
				} else if ("03".equals(months[i])) {
					project.setMarCount(reportCount);
				} else if ("04".equals(months[i])) {
					project.setAprCount(reportCount);
				} else if ("05".equals(months[i])) {
					project.setMayCount(reportCount);
				} else if ("06".equals(months[i])) {
					project.setJunCount(reportCount);
				} else if ("07".equals(months[i])) {
					project.setJulCount(reportCount);
				} else if ("08".equals(months[i])) {
					project.setAugCount(reportCount);
				} else if ("09".equals(months[i])) {
					project.setSeptCount(reportCount);
				} else if ("10".equals(months[i])) {
					project.setOctCount(reportCount);
				} else if ("11".equals(months[i])) {
					project.setNovCount(reportCount);
				} else if ("12".equals(months[i])) {
					project.setDecCount(reportCount);
				}
			}
			projectList.add(project);
		}
		


優(yōu)化后速度很大提升,請求時間一般為180ms,滿足實際需求。

總結(jié):報表查詢中一定要減少請求數(shù)據(jù)庫的次數(shù)。盡量采用多表查詢或存儲過程調(diào)用的方式。




向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI