0

Well, i have a simple ajax chat application. It works in this way.. user sends a http ajax requests for new messages in 1 seconds interval. server checks if there is any new message for that user, If there is any new message then server encodes in json format and sends to user.

now the question is how to combine ajax chat and also socket chat in same time? so a some user can chat using socket based device and some can use ajax..

4

1 回答 1

0

好的,我有一个架构可以解决这个问题。首先,当我们使用基于 ajax 的聊天时,我们都会检查新消息,当我们发现新消息时,我们会将其显示给聊天者。在套接字编程中,我们根据目标用户在有新消息到来时抛出该消息。因此,解决方案是,我们必须首先将所有数据存储到数据库中,并且我们必须像 ajax 聊天一样检查套接字事件。

它没有引起注意,因为我们正在支付沉重的服务器负载,但目前这是解决方案。

于 2013-11-30T05:57:59.183 回答