I am developing a chat kind of web app to experiment live group edit. My idea, is something like wave, where you can edit even those you have already send. I was planning to use mongodb or something similar for per chat basis.
My reason for that is: Say there are 100 texts in one instants of chat. And we have 10 such chats. What happens is there will 1000 chats in the table in which its store. So even a person in one chat edit his chat, the db has to look through all 1000. So if I use table per chat, i felt it could improve speed and performance.
But I want to know from people who have done this before.