0

I am scraping a site using goutte to get some of amount of data. But it's making the site slow. So I want to use multi-threading How can I do multi-threading in laravel framework?

Shashi Sagar
  • 1
  • 1
  • 6
  • Welcome to StackOverflow. Please read about [asking questions](http://stackoverflow.com/help/asking). Please, also note that SO is not a public tutorial site. Thanks. – user3078414 Jun 23 '16 at 13:08
  • see this http://stackoverflow.com/questions/70855/how-can-one-use-multi-threading-in-php-applications – Amir Bar Jun 23 '16 at 13:33

1 Answers1

1

You can use Queues in laravel. It does the same job it run the code in background.

Aman Kumar
  • 1,572
  • 4
  • 17
  • 25