I have developed a web application using laravel , This Application consists API for Device Registeration. In order to Test this Application I used Apache JMeter to hit the API. Initially I send 500 request at a time to API using Apache JMeter(By creating threads) and application woked fine , But if I send 2000 request at a time to API only 1500 requests are being handled by laravel application.
So is there any configuration in Laravel to handle multiple request for particular API ??
API -
Route::post('device', 'DeviceManagementController@device');
Thanks in Advance