WebSocket Data Sending Performance Issue #605
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Hi! Thanks for the report. This is definitely something worth looking at. If I understood correctly your client code runs on Android, and from the code above it looks like you're using the Ktor client (with Also, did you try and reproduce this with another Krossbow web socket implementation (like
Which web socket client did you use for this test? Thanks in advance for your answers |
Beta Was this translation helpful? Give feedback.
Hi! Thanks for the report. This is definitely something worth looking at.
If I understood correctly your client code runs on Android, and from the code above it looks like you're using the Ktor client (with
krossbow-websocket-ktor
). Is this correct?Which Ktor engine are you using behind the scenes? Are you using
ktor-client-android
,ktor-client-okhttp
,ktor-client-cio
, or maybe another one? Did you reproduce this issue with several engines?Also, did you try and reproduce this with another Krossbow web socket implementation (like
krossbow-websocket-okhttp
)?W…