johnRivs
johnRivs

Reputation: 164

Laravel file cache on Heroku. How to keep them after pushes?

If you use Heroku to host a Laravel app, you probably know what happens if you use the file cache. After every git push, it will be gone. That sucks if you need to cache something forever.

Do you know any method to work around that? Or should I just pick another cache driver?

Upvotes: 0

Views: 406

Answers (1)

Dariusz Aniszewski
Dariusz Aniszewski

Reputation: 457

You can't use files for this, sorry.

Pick any other add-on for caching.

Upvotes: 1

Related Questions