Creating temporary files in Heroku

前端 未结 3 1185
伪装坚强ぢ
伪装坚强ぢ 2020-12-05 07:33

I have an app hosted @ Heroku. The app depends on some feeds which are fetched using a socket listener. The socket listener gets one line of XML per second. Once I detect th

3条回答
  •  暖寄归人
    2020-12-05 07:45

    You may be able to use the #{RAILS_ROOT}/tmp/ directory or Rails.root.join('tmp').to_s:

    Aspen & Bamboo
    [...]
    There are two directories that are writeable: ./tmp and ./log (under your application root).
    [...]

    Cedar
    Cedar offers an ephemeral writeable filesystem. You can write out to disk anywhere you would like. Your changes will be lost on dyno restart and spin-up.

    RAILS_ROOT is for older Rails versions, Rails.root is for newer versions.

    You can't depend on anything surviving across requests of course, there's no guarantee that you'll even be working with the same dyno.

    As long as you stay within the same process or request, Rails.root.join('tmp') should be usable. If you need the temporary data to survive across requests or processes then you're better off using something else (such as MongoDB or PostgreSQL) as a collecting ground for your data on its way to S3.


    Thanks to Benjamin Wheeler for the heads up about the RAILS_ROOT to Rails.root change.

提交回复
热议问题