I'm running a website that's starting to grow beyond simple performance and Tunning. It's a PHP app with MySQL as backend. MySQL is properly tunned and the code is optimized.
The thing is that i see that i can use some sort of denormalization to speed things up.
Suppose you have a site similar to ebay or Amazon. You have products in your database with some information related (seller, customers who bought the product, city, state, etc). That would be multiple tables in a Relational DataBase, and is good to keep this way to make good querys. But, for example, for the home page, you could have one single denormalized document (for example in MongoDB). Could be a collection with the latest products, denormalied, similar to this:
products = {
{
id:13,
name:"Some product",
city:"aCity",
state:"aState",
price:"10"
},
{
id:123,
name:"another product",
city:"aCity",
state:"aState",
price:"10"
}
}
This way, I could query that collection instead of the MySQL database (with all the joins involved) and things could get really fast.
Now, here is the question. When and how would you denormalize that data? For example, i could decide that I want to denormalize the data when it's inserted.
So, in my "create-product.php" (simply put). I could do all the "insert into" for mysql, and after that i could do the save to the Mongo collection.
Or, i could just run a program in the server. Or make some cron to look for the latest products.
All these are posibilities. What do you do? What is your expirience?
Thanks a lot.