%% Last Updated: - [[2021-04-19]] %% [[Concurrent requests]] in [[Gatling]] can be set by using `resources()`. Here’s an example from the [Gatling Documentation](https://gatling.io/docs/2.3/http/http_request/): ```scala http("Getting issues") .get("https://www.github.com/gatling/gatling/issues") .resources( http("api.js").get("https://collector-cdn.github.com/assets/api.js"), http("ga.js").get("https://ssl.google-analytics.com/ga.js") ) ``` It’s meant to be used to simulate the download of resources that are embedded into a page, but it will work for any request that you put in as a resource.