Same API in Java, Go, Rust, and Kotlin — a 4-language benchmark

After 21 years of Java development, I rebuilt our short-video platform backend in Go, Rust, and Kotlin (Ktor) to make an informed decision about our production stack. Same API across all four: auth...

By · · 1 min read
Same API in Java, Go, Rust, and Kotlin — a 4-language benchmark

Source: DEV Community

After 21 years of Java development, I rebuilt our short-video platform backend in Go, Rust, and Kotlin (Ktor) to make an informed decision about our production stack. Same API across all four: authentication, video feed, follow system, S3 uploads, Redis caching. Here are the results. Performance summary Throughput (wrk, 200 concurrent, 10s, health endpoint) Java Go Rust Kotlin QPS 88K 100K 210K 99K Latency distribution (200 concurrent) Go Rust Kotlin p50 1.79 ms 0.70 ms 1.60 ms p99 6.13 ms 1.48 ms 15.36 ms Memory under 500 concurrent connections (RSS) Java Go Rust Kotlin Peak 372 MB 60 MB 33 MB 650 MB Cold start (binary to first HTTP response) Java Go Rust Kotlin Time 2,714 ms 69 ms 153 ms 914 ms Build time (clean, deps cached) Java Go Rust Kotlin Time 5.6s 9.4s 98.3s 14.1s Things that surprised me Kotlin nearly matches Go in throughput. Ktor 3.4 + Netty + JVM 21 Virtual Threads hit 99K QPS — within 1% of Go's 100K. JIT optimization on hot paths is real. But p99 latency (15ms) and memo

Related Posts

Similar Topics

#programming (65)#software development (24)#ai (22)#webdev (18)#opensource (17)#coding (8)#hands on tutorials (14)#dafny (14)#formal verification (14)#json (11)#deep dives (13)#open source (10)#performance (11)#simd (11)#security (10)#rust cargo package (10)#beginners (9)#release (8)#new york city (8)#languages (8)

Trending on ShareHub

  1. Understanding Modern JavaScript Frameworks in 2026
    by Alex Chen · Feb 12, 2026 · 0 likes
  2. The System Design Primer
    by Sarah Kim · Feb 12, 2026 · 0 likes
  3. Just shipped my first open-source project!
    by Alex Chen · Feb 12, 2026 · 0 likes
  4. OpenAI Blog
    by Sarah Kim · Feb 12, 2026 · 0 likes
  5. Building Accessible Web Applications: A Practical Guide
    by Alex Chen · Feb 12, 2026 · 0 likes
  6. Rapper Lil Poppa dead at 25, days after releasing new music
    Rapper Lil Poppa dead at 25, days after releasing new music
    by Anonymous User · Feb 19, 2026 · 0 likes
  7. write-for-us
    by Volt Raven · Mar 7, 2026 · 0 likes
  8. Before the Coffee Gets Cold: Heartfelt Story of Time Travel and Second Chances
    Before the Coffee Gets Cold: Heartfelt Story of Time Travel and Second Chances
    by Anonymous User · Feb 12, 2026 · 0 likes
    #coffee gets cold #the #time travel
  9. Best DoorDash Promo Code Reddit Finds for Top Discounts
    Best DoorDash Promo Code Reddit Finds for Top Discounts
    by Anonymous User · Feb 12, 2026 · 0 likes
    #doordash #promo #reddit
  10. Premium SEO Services That Boost Rankings & Revenue | VirtualSEO.Expert
    by Anonymous User · Feb 12, 2026 · 0 likes
  11. NBC under fire for commentary about Team USA women's hockey team
    NBC under fire for commentary about Team USA women's hockey team
    by Anonymous User · Feb 18, 2026 · 0 likes
  12. Where to Watch The Nanny: Streaming and Online Viewing Options
    Where to Watch The Nanny: Streaming and Online Viewing Options
    by Anonymous User · Feb 12, 2026 · 0 likes
    #streaming #the nanny #where
  13. How Much Is Kindle Unlimited? Subscription Cost and Plan Details
    How Much Is Kindle Unlimited? Subscription Cost and Plan Details
    by Anonymous User · Feb 12, 2026 · 0 likes
    #kindle unlimited #subscription #unlimited
  14. Russian skater facing backlash for comment about Amber Glenn
    Russian skater facing backlash for comment about Amber Glenn
    by Anonymous User · Feb 18, 2026 · 0 likes
  15. Google News
    Google News
    by Anonymous User · Feb 18, 2026 · 0 likes

Latest on ShareHub

Browse Topics

#artificial intelligence (31571)#data science (24018)#ai (17169)#generative ai (15034)#crypto (15008)#machine learning (14681)#bitcoin (14260)#featured (13566)#news & insights (13064)#crypto news (11091)

Around the Network