├── .idea ├── chat_im.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── ChatMsgType.php ├── ChatServer.php ├── HandleAction.php ├── README.md ├── Response.php ├── action ├── BaseAction.php ├── ChatAction.php └── RoomAction.php ├── chat.html ├── console └── ChatServerController.php ├── doc ├── YII+Swoole+Redis及时聊天IM设计方案.docx ├── 图片1.png └── 图片2.png └── model ├── ChatMsg.php ├── ChatRoom.php └── ChatUser.php /.idea/chat_im.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/.idea/chat_im.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /ChatMsgType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/ChatMsgType.php -------------------------------------------------------------------------------- /ChatServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/ChatServer.php -------------------------------------------------------------------------------- /HandleAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/HandleAction.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/README.md -------------------------------------------------------------------------------- /Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/Response.php -------------------------------------------------------------------------------- /action/BaseAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/action/BaseAction.php -------------------------------------------------------------------------------- /action/ChatAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/action/ChatAction.php -------------------------------------------------------------------------------- /action/RoomAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/action/RoomAction.php -------------------------------------------------------------------------------- /chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/chat.html -------------------------------------------------------------------------------- /console/ChatServerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/console/ChatServerController.php -------------------------------------------------------------------------------- /doc/YII+Swoole+Redis及时聊天IM设计方案.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/doc/YII+Swoole+Redis及时聊天IM设计方案.docx -------------------------------------------------------------------------------- /doc/图片1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/doc/图片1.png -------------------------------------------------------------------------------- /doc/图片2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/doc/图片2.png -------------------------------------------------------------------------------- /model/ChatMsg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/model/ChatMsg.php -------------------------------------------------------------------------------- /model/ChatRoom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/model/ChatRoom.php -------------------------------------------------------------------------------- /model/ChatUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melodyne/swoole-im/HEAD/model/ChatUser.php --------------------------------------------------------------------------------