You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are noticing that fetch and fetchArray are taking between 1.5-2.5s on average when trying to fetch an entry by ID. Per network logs, it looks like the response comes back super quick, but hangs in the SDK for 1-2s. This seems to be isolated to iOS as Android is using the exact same entry and only experiencing 200-300ms response time from their equivalent SDK method (.one).
Please let me know if we are doing something wrong here:
let content: PromoModel = try await withCheckedThrowingContinuation { continuation in
client.fetch(PromoModel.self, id: Content.homepageBanners.id) { result in
switch result {
case .success(let promos):
continuation.resume(returning: promos)
case .failure(let error):
continuation.resume(throwing: error)
}
}
}
I have start and end times captured before and after this fetch and have isolated the wait to be here.
The text was updated successfully, but these errors were encountered:
We are noticing that
fetch
andfetchArray
are taking between 1.5-2.5s on average when trying to fetch an entry by ID. Per network logs, it looks like the response comes back super quick, but hangs in the SDK for 1-2s. This seems to be isolated to iOS as Android is using the exact same entry and only experiencing 200-300ms response time from their equivalent SDK method (.one).Please let me know if we are doing something wrong here:
I have start and end times captured before and after this
fetch
and have isolated the wait to be here.The text was updated successfully, but these errors were encountered: