| Home | About | Concept | It's a Jungle | What you need to know | Services | Auth. Entry | Contact Us |
Problem: Complex software used by the client to calibrate data took too long to produce results
Analysis: Restricted by memory, the program relied too heavily on slow disk access
The Result:
Using double-linked lists, we were able to reduce the amount of calibration information that needed to be held in computer memory. By reducing reliance on the disk, we increased the program's throughput by a factor of sixty.
Back