摘要:
1. 分析 排队叫号系统的队列数据变化很频繁,因此可以考虑使用redis的list结构存储某一队列的数据,与前端采用websocekt连接,后端主动推送数据给前端,避免频繁轮询造成资源浪费。 为了满足排队系统的需求,需要设计以下几个api: 入队 出队 获取队列数据和队长 允许某人中途离队(已知其信 阅读全文
摘要:
1. SpringBoot Redis yml 配置 此处省略密码 spring: redis: database: 0 host: 127.0.0.1 port: 6379 timeout: 3000 jedis: pool: max-active: 8 max-wait: -1 max-idle 阅读全文