Hello sorry for noob question again, Is ktor need ...
# ktor
d
Hello sorry for noob question again, Is ktor need specific apache version to works? my project utilize nebula global.lock to lock apache version?
✔️ 1
e
What version of apache do you use?
d
Copy code
"org.apache.httpcomponents:httpclient": {
            "locked": "4.5.2",
It's 4.5.2
e
It should work
d
Thank you I'll try
Could you mind to tell me, what is the minimum apache version to make ktor works as expected ?
e
I tested it against
4.4
and everything is fine. Probably it can work with early versions.
d
I see, Btw last question, What is your best recommendation engine for ktor http client ? is it apache? CIO? jetty ?
e
Depends on the use case, I prefer to use CIO.
🔥 1
g
Glad to hear that about CIO as an early adopter
d
@e5l is there any good read or documentation to know which engine that good for specific use case?