72

テスト アプリで奇妙な動作が発生しています。同じサーバーに送信する約 50 の同時 GET 要求があります。サーバーは、リソースが非常に限られている小さなハードウェア上の組み込みサーバーです。単一のリクエストごとにパフォーマンスを最適化するために、次のように の 1 つのインスタンスを構成Alamofire.Managerします。

let configuration = NSURLSessionConfiguration.defaultSessionConfiguration()
configuration.HTTPMaximumConnectionsPerHost = 2
configuration.timeoutIntervalForRequest = 30
let manager = Alamofire.Manager(configuration: configuration)

リクエストを送信すると、リクエストmanager.request(...)は2つのペアでディスパッチされます(予想どおり、Charles HTTP Proxyで確認しました)。ただし、奇妙なことに、最初のリクエストから 30 秒以内に終了しなかったすべてのリクエストは、タイムアウトのために同時にキャンセルされます (まだ送信されていない場合でも)。これは、動作を示す図です。

コンカレントリクエストの図

これは予想される動作ですか? また、リクエストが送信される前にタイムアウトにならないようにするにはどうすればよいですか?

どうもありがとう!

4

1 に答える 1

131

はい、これは予期された動作です。1 つの解決策は、要求をカスタムの非同期NSOperationサブクラスでラップし、操作キューの を使用して、パラメーターmaxConcurrentOperationCountではなく同時要求の数を制御することです。HTTPMaximumConnectionsPerHost

元の AFNetworking は、リクエストをオペレーションにラップする素晴らしい仕事をしたので、これは些細なことでした。しかし、AFNetworking のNSURLSession実装ではこれが行われず、Alamofire もそうではありません。


サブクラスRequestで簡単にラップできます。NSOperation例えば:

class NetworkOperation: AsynchronousOperation {

    // define properties to hold everything that you'll supply when you instantiate
    // this object and will be used when the request finally starts
    //
    // in this example, I'll keep track of (a) URL; and (b) closure to call when request is done

    private let urlString: String
    private var networkOperationCompletionHandler: ((_ responseObject: Any?, _ error: Error?) -> Void)?

    // we'll also keep track of the resulting request operation in case we need to cancel it later

    weak var request: Alamofire.Request?

    // define init method that captures all of the properties to be used when issuing the request

    init(urlString: String, networkOperationCompletionHandler: ((_ responseObject: Any?, _ error: Error?) -> Void)? = nil) {
        self.urlString = urlString
        self.networkOperationCompletionHandler = networkOperationCompletionHandler
        super.init()
    }

    // when the operation actually starts, this is the method that will be called

    override func main() {
        request = Alamofire.request(urlString, method: .get, parameters: ["foo" : "bar"])
            .responseJSON { response in
                // do whatever you want here; personally, I'll just all the completion handler that was passed to me in `init`

                self.networkOperationCompletionHandler?(response.result.value, response.result.error)
                self.networkOperationCompletionHandler = nil

                // now that I'm done, complete this operation

                self.completeOperation()
        }
    }

    // we'll also support canceling the request, in case we need it

    override func cancel() {
        request?.cancel()
        super.cancel()
    }
}

次に、50 個のリクエストを開始したい場合は、次のようにします。

let queue = OperationQueue()
queue.maxConcurrentOperationCount = 2

for i in 0 ..< 50 {
    let operation = NetworkOperation(urlString: "http://example.com/request.php?value=\(i)") { responseObject, error in
        guard let responseObject = responseObject else {
            // handle error here

            print("failed: \(error?.localizedDescription ?? "Unknown error")")
            return
        }

        // update UI to reflect the `responseObject` finished successfully

        print("responseObject=\(responseObject)")
    }
    queue.addOperation(operation)
}

そうすれば、これらのリクエストは によって制約されmaxConcurrentOperationCount、リクエストのタイムアウトについて心配する必要がなくなります..

これは、非同期/並行サブクラスAsynchronousOperationに関連付けられた KVN を処理する基本クラスの例です。NSOperation

//
//  AsynchronousOperation.swift
//
//  Created by Robert Ryan on 9/20/14.
//  Copyright (c) 2014 Robert Ryan. All rights reserved.
//

import Foundation

/// Asynchronous Operation base class
///
/// This class performs all of the necessary KVN of `isFinished` and
/// `isExecuting` for a concurrent `NSOperation` subclass. So, to developer
/// a concurrent NSOperation subclass, you instead subclass this class which:
///
/// - must override `main()` with the tasks that initiate the asynchronous task;
///
/// - must call `completeOperation()` function when the asynchronous task is done;
///
/// - optionally, periodically check `self.cancelled` status, performing any clean-up
///   necessary and then ensuring that `completeOperation()` is called; or
///   override `cancel` method, calling `super.cancel()` and then cleaning-up
///   and ensuring `completeOperation()` is called.

public class AsynchronousOperation : Operation {

    private let stateLock = NSLock()

    private var _executing: Bool = false
    override private(set) public var isExecuting: Bool {
        get {
            return stateLock.withCriticalScope { _executing }
        }
        set {
            willChangeValue(forKey: "isExecuting")
            stateLock.withCriticalScope { _executing = newValue }
            didChangeValue(forKey: "isExecuting")
        }
    }

    private var _finished: Bool = false
    override private(set) public var isFinished: Bool {
        get {
            return stateLock.withCriticalScope { _finished }
        }
        set {
            willChangeValue(forKey: "isFinished")
            stateLock.withCriticalScope { _finished = newValue }
            didChangeValue(forKey: "isFinished")
        }
    }

    /// Complete the operation
    ///
    /// This will result in the appropriate KVN of isFinished and isExecuting

    public func completeOperation() {
        if isExecuting {
            isExecuting = false
        }

        if !isFinished {
            isFinished = true
        }
    }

    override public func start() {
        if isCancelled {
            isFinished = true
            return
        }

        isExecuting = true

        main()
    }

    override public func main() {
        fatalError("subclasses must override `main`")
    }
}

/*
 Abstract:
 An extension to `NSLocking` to simplify executing critical code.

 Adapted from Advanced NSOperations sample code in WWDC 2015 https://developer.apple.com/videos/play/wwdc2015/226/
 Adapted from https://developer.apple.com/sample-code/wwdc/2015/downloads/Advanced-NSOperations.zip
 */

import Foundation

extension NSLocking {

    /// Perform closure within lock.
    ///
    /// An extension to `NSLocking` to simplify executing critical code.
    ///
    /// - parameter block: The closure to be performed.

    func withCriticalScope<T>(block: () throws -> T) rethrows -> T {
        lock()
        defer { unlock() }
        return try block()
    }
}

このパターンには他にも考えられるバリエーションがありますが、(a) に戻ることを確認してtrueくださいasynchronous(b) Concurrency Programming Guide: Operation Queuesの「 Configuring Operations for Concurrent Execution 」セクションの概要に従って、必要な KVN を投稿isFinishedisExecutingます。

于 2014-11-19T17:00:33.420 に答える