inseven / opolua

A compiled-OPL interpreter for iOS written in Lua
https://opolua.org
MIT License
12 stars 0 forks source link

fix: Crash when adding large directories #239

Closed jbmorley closed 1 year ago

jbmorley commented 1 year ago

It looks like iOS 16 is far more agressive about limiting open file handles meaning we were running out of resources when monitoring large directory structures. This dials the number of open monitors down to 20 from 1000 and relies on manual refresh as a recovery mechanism. Hopefully we can find a better solution in the future.