artisan

Laravel 5 Clear Views Cache

橙三吉。 提交于 2019-11-26 15:19:59
问题 I notice that Laravel cache views are stored in ~/storage/framework/views. Over time, they get to eat up my space. How do I delete them? Is there any command that could? I tried php artisan cache:clear, but it is not clearing the views cache. With that, I have to manually delete the files in the said folder. Also, how do I disable the views caching? 回答1: There is now a php artisan view:clear command for this task since Laravel 5.1 回答2: To get all the artisan command, type... php artisan If

How to keep Laravel Queue system running on server

喜你入骨 提交于 2019-11-26 08:49:46
问题 I recently setup a Laravel Queue system. The basics are a cronjob calls a command which adds jobs to a queue and calls a second command which sends an email. The system works when I ssh into my server and run php artisan queue:listen, but if I close my terminal the listener shuts down and the jobs stack up and sit in queue until I ssh back in and run listen again. What is the best way to keep my queue system running in the background without needing to keep my connection open via ssh? I tried