Hacker News new | ask | show | jobs
by sorenbs 924 days ago
How are you handling the security boundary between tenants? Is each edge function run in a separate Deno process in a VM?
1 comments

We have a cluster of Edge Runtime instances in each region. We run multiple edge functions within an instance using v8 isolates (Deno's core runtime is a wrapper around v8 isolates). This setup provides a good balance between cost and security. Other edge hosting providers like Cloudflare also follow a similar setup.