Hello all! I'm building an application that I want...
# ktor
j
Hello all! I'm building an application that I want to have different ports to be protected by different subnets. That means I also want to expose different modules on different ports. Originally we had multiple ktor servers running within the same JVM application, but I've seen been told that ktor does a lot of optimizations where that's probably not the best idea. 2 questions: 1. Was I told right? Should I NOT be running multiple ktor servers in the same JVM? 2. What's the best way to expose specific modules (and thereby routes) on different ports? Thanks so much for the help 😃
🤔 1