菜鸟教程小白 发表于 2022-12-13 06:37:53

ios - CKQueryOperation 中的 RequestRateLimited


                                            <p><p>如果 <code>CKQueryOperation</code> 返回 <code>RequestRateLimited</code> 错误,应该将相同的 queryOperation 添加到 publicDatabase,还是应该根据收到的游标创建新的 queryOperation?如果发生 <code>RequestRateLimited</code> 错误,客户端是否会收到光标? </p>

<hr/>

<p>@farktronix:</p>

<ul>
<li>您不应收到新的查询光标</li>
<li>您可以再次重试相同的操作</li>
</ul>

<p>我是否很好地实现了它,因为我收到了一个错误(在模拟器中,在糟糕的互联网条件下)</p>

<blockquote>
<p>-: operation is finished and cannot be enqueued</p>
</blockquote>

<pre><code>dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), {

    // ..other things

    let qo = CKQueryOperation(query: query)
    let qcb: (CKQueryCursor!, NSError!) -&gt; () = {cursor, error in

      if error == nil {

            //.. some code

      } else {

            if error.code == CKErrorCode.RequestRateLimited.rawValue {

                let retryAfter = error.userInfo! as! NSNumber

                dispatch_after(dispatch_time(DISPATCH_TIME_NOW, Int64(retryAfter.doubleValue * Double(NSEC_PER_SEC))), dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), {

                  publicDatabase.addOperation(qo) // &lt;- HERE is it ok? I get an error
                })
            } else {

                // .. some other code
            }
      }
    }

    qo.queryCompletionBlock = qcb
    publicDatabase.addOperation(qo)

    // .. other things ..
})
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您收到 <code>CKErrorRequestRateLimited</code> 错误,那么您不应该收到新的查询游标。 </p>

<p>每当您收到速率限制错误时,您可以在 <code>CKErrorRetryAfterKey</code> 键下的 userInfo 字典中指定的时间过去后重试相同的操作。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - CKQueryOperation 中的 RequestRateLimited,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29836127/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29836127/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - CKQueryOperation 中的 RequestRateLimited