本文介绍了在Heroku上剪纸?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我很好奇是否有人可以在不使用S3的情况下在Heroku上工作.我假设Heroku是一个只读系统,但是必须有某种方法可以在其中保存图像.

I was curious if anyone could get paperclipped working on Heroku without using S3. I'm assuming Heroku is a read-only system, but there must be some way to save images there.

推荐答案

您无法写入Heroku的文件系统,因此不可以,无法以所需方式保存图像.您的选择是使用诸如S3之类的服务,或者将其存储在数据库中.我建议使用S3,因为数据库并未针对文件存储进行优化.值得阅读 Heroku有关文件上传的文档.

You can't write to Heroku's file system, so no, there is no way to save images the way you want. Your options are using a service like S3, or storing them in the database. I recommend using S3, because databases are not optimized for file storage. It's worth reading Heroku's documentation on file uploads.

这篇关于在Heroku上剪纸?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 16:17