Laravel: Synchronisch queue system
问题 I am trying to set up an API which uses a queue system on another server to handle the requests. Let me start what I am trying to accomplish without the queue system (no authorization to keep it simple): Using Postman for example making a GET request to the URL https://example.com/products would return a JSON string like [ { "id": 1, "name": "some name", ... }, { "id": 2, "name": "some other name", ... }. ... ] The code in routes/api.php would be something like: <php Route::get('/products',