Corey

Results 183 comments of Corey

@phillipross @sadams @kohenkatz looking at my [hipaa-postgres](https://registry.hub.docker.com/layers/netreconlab/hipaa-postgres/13-3_1/images/sha256-3bcebd68a6e7ecd74daf04f7373ab4df0104233ed2a821e3622b2dfe88a2aafe?context=repo) image it appears many of the QEMU issues may have been resolved as I can build for all images (including `linux/arm64/v8`) as the...

Please complete the [issue template](https://github.com/parse-community/Parse-Swift/issues/382#issue-1303958596) in it's entirety by adding information under each header. Caching was added in #196. You can change the default cache policy the SDK uses for...

> P.S. How do we use [useProtocolCachePolicy](https://developer.apple.com/documentation/foundation/nsurlrequest/cachepolicy/useprotocolcachepolicy) with combination to Parse query? I’ve answered this in the previous comment, it’s automatically used for every query: > The SDK defaults to...

This is probably because the SDK uses `.POST` instead of `.GET` for queries: https://github.com/parse-community/Parse-Swift/blob/b0bd3510100f17b2c2b848f4bd6aa189b268ee30/Sources/ParseSwift/Types/Query.swift#L1271-L1447

From your logs and the fact that a query with a lower limit seems to work, I suspect your issue is based on your server configuration or back4app service. Could...

> Is it possible it could have something to do with the fact that ParseSwift is not truly async, but still uses completionBlocks? How is ParseSwift not truly async? >...

> Cause the async code is all converted with withCheckedThrowingContinuation but I don't know how that works exactly. ParseSwift was asynchronous before async/await was released. Using `withCheckedThrowingContinuation` is a way...

Posting my responses to your comments in #241: > So there's no way to only send mutated keys to the server using Parse Swift? There are a few ways, but...

> In my view, it shouldn't be up to the developer to custom code a solution for the SDK to work as expected with the core Parse Server. One of...

> As all keys saved by user two will be overriden. If this was any other SDK, the result would be: > >{ > foo: "aaa", > yolo: "aaa" >}...