I need to create a simple scalable dynamic HTML page.
- Simple because it only needs to validate and concatenate a query string value.
- Scalable because it can reach 100 requests per seconds.
Usually I would create a PHP file, and do my stuff. https://www.example.com/view.php?id=123456
The serverless way to go seems to be Aws API Gateway and Lambda. But, at $3.50 per million API calls the price is staggering compared to what an EC2 instance can do.
Any other options ? Is the AWS "serverless" tech mature enough to create a truly scalable dynamic web page ?