I am creating a Chatting Site where hundreds of users will be going to chat with each other. It is a two way chat means one user can chat with a single user only. Everything is working fine. What i am doing is storing the messages of all the users in a single table of the database and then users are accessing specific chats through some id.
I just wanted to ask will there be any problem if multiple users access the same database table at the same time. What is the limit? With around 4 users it is working fine but do i have to make any changes to handle more than 4 users (say 500).
Site is based on PHP and MySql. I am using ClearDB (Free Plan) for database and site is hosted on Windows Azure.