Ok. I am making a random chatting website here, and the website needs to know each user's new visit datetime and a randomID in order to retrieve the messages he/she made in a chatting room. When a user comes in to my website, he/she gets a unique random ID and start to talk to another person. Every comments they make gets saved in a database along with a randomly assigned chatroomID. Then, the database loads the messages in the chatroom (every 1 second) by identifying the users' new visit dates to the chatroomID and retrieving all the users' messages associated with the chatroomID in chronological order (from the new visit date). Do you think that this is a well-designed way to create a random chatting website and if not is there a better design alternative? :D If I reload the messages from the database every 1 second, won't there be speed or traffic issues? If I am not clear on my explanation, plz leave msg and ask me for the details.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

An open source project was just released called JabbR based on SignalR.

link|improve this answer
I am a newbie on this field. Can you explain me more clearly why your suggestion is relevant to my question?:D – Si Young Kim Jan 8 at 16:12
Because what you are trying to build is already done and done well in an open source project by people who work for Microsoft. I can't think of a better example than that. – rick schott Jan 8 at 16:18
Thanks, rick! I will check it out and see if I can get any help from it:) – Si Young Kim Jan 8 at 16:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.