qinguoyi / TinyWebServer

:fire: Linux下C++轻量级WebServer服务器
Apache License 2.0
15.85k stars 3.81k forks source link

connectionRAII的正确性? #192

Closed liver0377 closed 1 year ago

liver0377 commented 1 year ago

当创建一个connectionRAII对象之后, 线程可以获得一个数据库连接 image 然而, 当离开作用域之后, connectionRAII对象析构, 该连接还没有使用就被直接返回到了数据库连接池 request->mysql所指向的MYSQL结构有可能被多个线程同时指向