将 Rails 应用程序放入 SSD 并将 运行 rails 服务器放入其中是否会损坏驱动器?
Can placing the Rails app in an SSD and running rails server in it damage the drive?
在开发环境中,运行 rails s
有点慢。我想将我的项目文件移动到 SSD。人们说我们不应该对 SSD 进行太多的写入和读取。这会损坏驱动器吗?
实际上,没有。
People say that we should not do too many writes and reads to an SSD.
这些人可能指的是磁盘 I/O 比启动 rails 应用多几个数量级。
在开发环境中,运行 rails s
有点慢。我想将我的项目文件移动到 SSD。人们说我们不应该对 SSD 进行太多的写入和读取。这会损坏驱动器吗?
实际上,没有。
People say that we should not do too many writes and reads to an SSD.
这些人可能指的是磁盘 I/O 比启动 rails 应用多几个数量级。