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.
我需要能够从桌面应用程序接收用户的 ftp 文件,并且想知道 Rails 是否有办法处理这些请求,尽管它是基于 HTTP 的。
通常,您会让主机使用 FTP 守护程序处理请求。
如果你有相当多的用户通过 FTP 发送文件,你不想浪费 Rails 的 CPU 时间来处理它们。
此外,还要考虑安全和管理问题。您必须在 Rails 中编写自己的实现。使用内置的 FTPd 将允许您搭载它。
不要重新发明轮子,重复使用经过充分测试的轮子。