Site should work better
Posted on June 17th, 2007 by os
After some compliants about speed of responding of site I decided to make something with that. I looked around, how should be possible to render page with minimum queries to database, which is very often bottle neck of whole system.
 One my friend offer me to instal Memcached - it will help. I did play a little with it – and yes, site seems faster. It is something like database in memory – you can store content (objects, variables…) to memory paired with key. Later you can read this information by the key. It means, everything is stored in memory, so it is really fast.
To other developers – it is definitely good to try this system. Implementation is no problem at all and in some sites it is must have!
Filed under: Web