Re: Improve DB Performance
Have you profiled your application to establish exactly where the time is being taken up? If not, what makes you so sure database caching will solve the problem?
Premature optimization is the root of all evil in programming...
C.A.R. Hoare
Re: Improve DB Performance
Quote:
Originally Posted by
g1m0v0n5
How to go-a-head to fix up this issue?
If you've established that the database queries are the performance bottleneck you need to analyze the queries carefully. A common problem is that deeply nested table searches are sequential. To avoid it you either reformulate your queries or introduce proper table indexing.