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.
我最近在 Ruby 中听到了很多关于线程安全的信息。我的问题是,我如何确定我的 rails 应用程序(实际上是开源项目 reinerycms)是否是线程安全的?
没有简单的方法来确定应用程序是否是线程级的。
但是如果有类变量,使用线程,那么很可能应用程序不是因为它需要适当的同步(许多开发人员只是忽略)。
此外,这个问题不可能客观地回答,因为您关心 Ruby 中的线程安全,但询问一个完全不同的特定应用程序。