Serverless Functions with Multiple Cores

1 points by groundthrower ↗ HN
I have an Rust application that scales with number of CPU cores available. However, for example AWS Lambda only has a few cores available in their highest memory configuration.

Are there any such services available?

2 comments

[ 2.6 ms ] story [ 18.0 ms ] thread
Why would this be necessary? Assume you have 4 requests coming in concurrently, AWS would just route to 4 different lambdas. Otherwise why even go down this route?
It's for data crunching- simply to speed up the function