|
Most problems have to do with the performance bottlenecks
that arise when multiple users need to access a common resource. For example,
if your site depends on a single, common database, then the speed of data
access could become an issue if your database queries are not efficient.
Incorrect use of multithreading in web applications can be another
problem. Excessive disk access or memory leaks may also cause problems.
By identifying these problems early on, web
developers, designers, testers and administrators can optimize applications, upgrade
hardware, or employ caching strategies to get orders-of-magnitude performance
improvements.
|