CSC/ECE 517 Spring 2015/oss E1510 FLP: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
(Created page with "==Expertiza - Fix Instructor Login Performance Issue== Expertiza is a web application where students can submit and peer-review learning objects (articles, code, web sites, etc)....")
 
No edit summary
Line 1: Line 1:
==Expertiza - Fix Instructor Login Performance Issue==
<font size="6"><b> Expertiza - Fix Instructor Login Performance Issue </b></font>
 
Expertiza is a web application where students can submit and peer-review learning objects (articles, code, web sites, etc). It is used in select courses at NC State and by professors at several other colleges and universities.<ref>[https://github.com/expertiza/expertiza Expertiza on GitHub]</ref>
Expertiza is a web application where students can submit and peer-review learning objects (articles, code, web sites, etc). It is used in select courses at NC State and by professors at several other colleges and universities.<ref>[https://github.com/expertiza/expertiza Expertiza on GitHub]</ref>
__TOC__
__TOC__

Revision as of 18:43, 21 March 2015

Expertiza - Fix Instructor Login Performance Issue

Expertiza is a web application where students can submit and peer-review learning objects (articles, code, web sites, etc). It is used in select courses at NC State and by professors at several other colleges and universities.<ref>Expertiza on GitHub</ref>

Project Description

Currently when an Instructor logs into Expertiza,there a lot of select* from assignments queries being fired on database which would have an adverse effect on performance. We analyzed the source of this issue and made some changes, which reduced the number of select queries executed. The performance is high improved. The mission involved is tracing the source of the issue and modify the code to fix the issue.

The performance issue before modification

Modifications made to the Existing Code

==


Before Modification


After Modification

 

Code Cleanup



==




References

<references/>