Should I use akka.http.scaladsl.util.FastFuture instead of scala.concurrent.Future?
问题 Should I use akka.http.scaladsl.util.FastFuture instead of scala.concurrent.Future? The comment says : /** * Provides alternative implementations of the basic transformation operations defined on [[scala.concurrent.Future]], * which try to avoid scheduling to an [[scala.concurrent.ExecutionContext]] if possible, i.e. if the given future * value is already present. */ Do I get any performance improvement especially when I need to use Future.apply , Future.successful or Future.failed ? What