what exactly is the difference between the HttpCli...
# ktor
z
what exactly is the difference between the HttpClient that takes an engineFactory and the one that takes an engine? Is there a specific use case I would use one over the other?
a
The one, that takes a factory, manages the lifecycle of a created engine. For the other one, that takes an engine, you have to release engine resources manually, but it can be shared among several clients.