|
|
|
|
|
by manigandham
2313 days ago
|
|
Cloudflare uses V8 Isolates feature and they build a lot of the API backends to follow the WebWorker spec. It's very efficient and well-suited for logic running in network calls at the CDN edge but limited to Node/JS code. [1] AWS Lambda uses their Firecracker micro-vm tech which supports more runtimes, environments and triggers than just Node and also runs container workloads. [2] 1. https://www.infoq.com/presentations/cloudflare-v8/ 2. https://firecracker-microvm.github.io/ |
|