You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
项目里所用的httplib.h版本存在线程安全问题(不同线程同时调用send()会导致socket创建出现问题,见 #492),而原仓库在commit e022b8b给send函数加了锁,从而避免了这一问题(见 #679)
(不过在多个线程里共用一个HttpClient感觉是不是也不太好?我觉得可能更好的方式是在程序调用SendMessage时不直接发送请求而是先把请求push到一个消息队列里,然后再MiraiBot单独开一个线程专门负责消息队列的处理。这样其实也就不用关心第三方库是否实现了thread-safety了
The text was updated successfully, but these errors were encountered: