diff --git a/pages/edge/vs/amazon-lambda.mdx b/pages/edge/vs/amazon-lambda.mdx index 3e7cd51..74aee86 100644 --- a/pages/edge/vs/amazon-lambda.mdx +++ b/pages/edge/vs/amazon-lambda.mdx @@ -1,6 +1,6 @@ # Wasmer Edge vs Amazon Lambda -Wasmer Edge and Amazon Lambda are both serverless platforms for running websites. +Wasmer Edge and Amazon Lambda are both serverless platforms for running services at scale. ### Similarities @@ -14,7 +14,7 @@ Wasmer Edge and Amazon Lambda share these similarities: Wasmer Edge and Amazon Lambda differ in significant ways: -- Wasmer Edge is **more afforable** than Lamda +- Wasmer Edge is **more afforable** than Lambda - Wasmer Edge is built on **simpler and more scalable** technology than Lambda (which is built on top of Firecracker) - Wasmer Edge **doesn't require code changes in your application** to run, while you need to adapt your code to use the custom Lambda SDK to run. - Wasmer Edge **lets you reuse the same architecture to deploy your static assets and your dynamic websites**, while Amazon Lambda focuses only on the dynamic requests and recommends using S3 for your static assets. diff --git a/pages/edge/vs/cloudflare-workers.mdx b/pages/edge/vs/cloudflare-workers.mdx index fb889d4..b81b405 100644 --- a/pages/edge/vs/cloudflare-workers.mdx +++ b/pages/edge/vs/cloudflare-workers.mdx @@ -1,12 +1,13 @@ # Wasmer Edge vs Cloudflare Workers -Wasmer Edge and Cloudflare Workers are both serverless platforms for running websites. +Wasmer Edge and Cloudflare Workers are both serverless platforms for running websites at scale. ### Similarities Wasmer Edge and Cloudflare Workers share these similarities: -- **Affordable and cheaper than traditional clouds +- More **affordable** than traditional clouds +- **Fast startup times** - **Fully stateless** modern architecture - Built on a *shared nothing architecture*, **infinite scaling** @@ -14,7 +15,7 @@ Wasmer Edge and Cloudflare Workers share these similarities: Wasmer Edge and Cloudflare Workers differ in significant ways: -- Wasmer Edge has dedicated private networking for every workload +- Wasmer Edge has dedicated **private networking** for every workload - Wasmer Edge **supports multithreaded applications**, while "multi-threading and shared memory are not permitted in [Cloudflare] Workers" - Wasmer Edge **can run Python, Rust**, and other languages without any JS glue code, while Cloudflare Workers can only run WebAssembly through JavaScript. Example: Django can't run in Cloudflare workers.