# MiniMQ **Repository Path**: 2307856559/MiniMQ ## Basic Information - **Project Name**: MiniMQ - **Description**: 微型MQ服务框架 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 14 - **Created**: 2017-02-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #MiniMQ #模块划分 - Broker 简单来说就是消息队列服务器实体。 - Producer:消息的生产者 主要用来发送消息给消费者。 - Consumer:消息的消费者 主要用来接收生产者的消息。 - Routing Key:路由关键字(Topic), 主要用来控制生产者和消费者之间的发送与接收消息的对应关系。 - Channel:消息通道 在客户端的每个连接里,可建立多个channel,每个channel代表一个会话任务。 #任务说明 * 序列化部分需要扩展 * 目前只支持netty作为默认通信方式