Antoni Silvestrovič
Antoni Silvestrovič

Reputation: 1035

How many http requests can express.js handle?

I'm doing cost estimation for a university project, and I was wondering approximately how many requests can express.js handle for example on DigitalOcean's cheapest droplet (1gb memory, 1vCPU, 25GB SSD, 1TB transfer)?

Upvotes: 1

Views: 507

Answers (1)

adamkonrad
adamkonrad

Reputation: 7122

The load profile depends on the application. You should profile or load test the application to better understand if it's CPU bound, memory bound or I/O bound.

Upvotes: 1

Related Questions