
Software Engineer
Cloud-Native E-Commerce Platform
Maintained and extended a hybrid AWS e-commerce backend spanning Lambda, API Gateway, DynamoDB, EC2, and Aurora.
Backend Engineer
Built a low-latency redirect service with deterministic short-code generation, cache-first reads, and operational safeguards.
A high-throughput URL shortener I designed and deployed on Kubernetes, built around one question: how cheap can the redirect path get. Everything else in the system exists to keep that path fast.
I designed the API, the persistence model, and the caching strategy, implemented the service in Go, and owned the deployment — horizontal autoscaling, load balancing, and the CI/CD pipeline that shipped it.
Redirect traffic is overwhelmingly reads, and every millisecond shows. Hitting the database on each request is trivial to build but buckles under bursty load — and blindly trusting destination URLs invites abuse.
PostgreSQL holds the canonical URL records; Redis serves the hot redirect mappings. Short codes come from a collision-checked generator, redirects validate their destination before responding, and analytics writes stay off the critical path so tracking never slows a redirect. API rate limiting caps abuse at the edge.
A cache-first read path with a clean fallback when Redis misses, running on Kubernetes with horizontal autoscaling behind a load balancer, and a CI/CD pipeline that deploys it without manual steps.

Software Engineer
Maintained and extended a hybrid AWS e-commerce backend spanning Lambda, API Gateway, DynamoDB, EC2, and Aurora.

Software Engineer
Designed distributed backend services for a game publishing platform serving 200K+ monthly active users with real-time, high-concurrency workloads.