Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法获得线程安全的错误处理,而不是在整个 API 调用周围放置一个互斥锁?错误代码和字符串似乎不是线程本地的,文档似乎建议使用互斥锁来解决此问题。但是,很难相信没有更好的方法可以做到这一点。
据我所知,不,没有其他办法。
Fwiw,在 SQLite 中,事务隔离是通过良好的旧文件锁定完成的。