Serverless & Microservices

Functions, event buses, and resilient service meshes at scale.

  • 19 Tracked terms
  • Last 30 days Feed window

What this topic collects on

An article joins this feed when it matches these terms. Each one is also a search of its own.

Latest in Serverless & Microservices

DEV Community
dev.to > yash_sonawane25 > your-first-aws-production-architecture-from-a-simple-application-to-a-scalable-system-3738

Your First AWS Production Architecture: From a Simple Application to a Scalable System

1+ hour, 13+ min ago   (1081+ words) Most people learn AWS by studying individual services. RDS is a database. But that's not how AWS is used in the real world. In a real project, these services work together to solve one problem: How do we run an…...

DEV Community
dev.to > techforge > keeping-services-loosely-coupled-without-making-everything-abstract-1hdg

Keeping Services Loosely Coupled Without Making Everything Abstract

4+ hour, 57+ min ago   (500+ words) Loose coupling is one of those things everyone agrees with until they have to do it. Then it turns into a mess of interfaces, event buses, and six layers of indirection for a feature that just sends an email. I've…...

DEV Community
dev.to > safiya_k > set-a-pause-to-over-engineering-why-aws-lambda-microvms-will-serve-indie-developers-in-2026-58nh

Set a Pause to Over-Engineering: Why AWS Lambda MicroVMs Will Serve Indie Developers in 2026

5+ hour, 53+ min ago   (373+ words) 1.True State Retention Without Complicated Databases Earlier, if you wanted your backend code to retain a simple piece of information from a past user action, you had to store that data in an external database, such as Amazon DynamoDB. For…...

Medium
medium.com > @saifhamdan14 > building-backend-services-in-go-in-the-age-of-agentic-ai-5d7e99c2da02

Building Backend Services in Go in the Age of Agentic AI

2+ hour, 56+ min ago   (1530+ words) Why boring, explicit code wins when the most frequent reader of your code isn’t human. For a long time, the people reading my code were …...

Medium
medium.com > @chiranjilalsinghal4 > the-go-context-context-trick-that-saved-my-service-from-crashing-80b7bfc8357b

The Go context.Context Trick That Saved My Service From Crashing 💥

7+ hour, 7+ min ago   (29+ words) Okay, picture this: you’re staring at your production dashboards, and your core service — the one everyone depends on — is …...

Medium
medium.com > @khamitkar17 > stop-port-forwarding-how-cloudflare-tunnel-revolutionizes-local-development-2a88b853d73c

Stop Port Forwarding: How Cloudflare Tunnel Revolutionizes Local Development

8+ hour, 4+ min ago   (27+ words) A beginner’s guide to sharing localhost securely without open ports or public IPs. When building web applications, every …...

DEV Community
dev.to > luguanhuang > why-image-flipping-doesnt-need-a-server-22g2

Why Image Flipping Doesn't Need a Server

15+ hour, 46+ min ago   (534+ words) FlipImage takes a different route. The image is decoded, drawn, flipped, and exported in the browser. The product still loads normal web assets and uses standard traffic analytics, but the image bytes themselves are not sent to a server. Here…...

mdpi.com
mdpi.com > 2076-16/18/3417 > 9069

Applied Sciences, Vol. 16, Pages 9069: Empirical Static and Infrastructure Evaluation of Microservice Frameworks Across JVM, GraalVM Native Image, and Rust in Containerized Environments

16+ hour, 23+ min ago   (591+ words) Framework and runtime selection for containerized microservices are usually guided by request-level benchmarks, yet deployment-facing costs often dominate operational expenditure in Kubernetes environments. This study empirically evaluates four such infrastructure characteristics: container image size, startup time, idle resource consumption, and…...

DEV Community
dev.to > aws-builders > what-serverless-actually-costs-you-the-part-the-video-skipped-4m31

What 'Serverless' Actually Costs You (The Part the Video Skipped)

17+ hour ago   (23+ words) I am starting a new AWS Micro-learnings series and this video, "What Serverless Actually Means" is... Tagged with aws, serverless, lambda....

DEV Community
dev.to > dev_encyclopedia > you-dont-need-express-to-build-a-microservice-heres-the-zero-dependency-version-921

You Don't Need Express to Build a Microservice (Here's the Zero-Dependency Version)

17+ hour, 26+ min ago   (570+ words) Open ten "Node.js microservices" tutorials and nine start the exact same way: install Express, install an HTTP client, write a docker-compose.yml, stand up a message broker. By the time application code shows up, you've installed six things and…...