Post

Replies

Boosts

Views

Activity

Reply to Diagnosing poor build performance
In my mind a ram disk would potentially be self defeating in that it takes memory that could be used more directly for processing and uses it through code simulating a disk drive with the overhead of the file system. There should already be caching of disk content to ram in what is likely a more efficient manner.I would expect allowing more parallel operations would, up to a point, increase the overall speed of compiling.Utimately the speed matters only to the extent it matters for you. If you are having to sit and wait the extra time then that can matter since time is money after all.
Jan ’20
Reply to Debug code in Share extension
In my mind, not stopping at breakpoints makes sense.The app you are testing it with was built in release mode and wouldn't support debugging.I could also see that creating a potential security issue allowing debugging in that situation.You might be able to use the system logging to help understand what is going on.There is information on viewing the logs atapple.stackexchange.com/questions/165100/how-to-read-iphone-system-logsDocumentation on logging is athttps://developer.apple.com/documentation/os/logging
Jan ’20