简体   繁体   中英

How to cache specific routes or remove from cache specific routes in Laravel?

The fact is that I am connecting to sockets from another domain and have been trying for a long time to find out why I get 419 error when connecting to a private channel. It turns out that the csrf token is cached and I can successfully connect when the routes are not cached.

I don't know of a way to be selective about it but try running:

  • php artisan route:cache
  • php artisan cache:clear

Or for the whole set of cache clears you can run php artisan optimize

The other option would be to wait out the cache expiry but I doubt you would want to do that!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM