what's the recommended server stack for doing non-...
# server
j
what's the recommended server stack for doing non-web-ui rpc to a kotlin client - there seems to be a bunch of in progress projects out there.. I'm looking for something that refactors easily that also supports pushing to the client (or the client blocks waiting for updates), and is happy with K2
h
My first thoughts: http4k or Ktor
j
👍 1
a
Interesting find @Jimmy Nelle, I wasn't familiar with that library and looks like it might be a good one to try.
j
@Anonymike its already a cncf sandbox project and I'm using it already on my own and its really easy to set it up
j
in the end, i've gone with ktor + websockets + polymorphic serialization and json.. i'm guessing at some point ktor will get kotlinx-rpc which will do grpc/protobuf behind the scenes -- but until then
👍 4