Reputation: 164
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
Reputation: 457
You can't use files for this, sorry.
Pick any other add-on for caching.
Upvotes: 1