线程池-云信发批量房间消息转移到async线程池

This commit is contained in:
khalil
2025-05-06 17:32:23 +08:00
parent c70a2d4ce1
commit de0e767d41
48 changed files with 319 additions and 1292 deletions

View File

@@ -92,7 +92,9 @@
</select>
<select id="listValidRoomsByPartitionId" resultMap="RoomResultMap">
select * from room where uid &lt;&gt; #{roomUid} and partition_id = #{partitionId} and valid = 1 and online_num > 0 order by online_num desc
select * from room where 1=1
<if test="null != roomUid" > and uid &lt;&gt; #{roomUid} </if>
and partition_id = #{partitionId} and valid = 1 and online_num > 0 order by online_num desc
</select>
</mapper>