What is a good open source chat solution?

I am looking for a free scalable chat solution, which is equivalent to SOLR, but for chat. I have a LAMP application with which I need to integrate chat. For search I use SOLR, and since it has a REST interface integrated with it, it was easy and did not require writing Java.

Is there a similar turnkey solution that also has a high level for chat? Obviously, based on periodic polling scenarios based on MySQL / PHP / AJAX, there is no question.

+4
source share
2 answers

http://jwebsocket.org/
They have a demo version of the chat, which you can download and modify (it is licensed under LGPL).
I am developing a facebook-like chat with Node.js, it is not so complicated and works great. I use "socket.io" and now I'm going to develop an Android application, https://github.com/Gottox/socket.io-java-client
Do you need a private chat? or just the public? Igniterealtime as @krishnakumarp published seems to be much more complex and complete.

+2
source

Source: https://habr.com/ru/post/1413472/


All Articles