Trying to come up with a really awesome threading system.
I have a lot of delay with loading, which sucks on a mobile device, so I'm trying to speed that up by offloading content generation to threads.
Content generation is one of those things that should have a tiny load time as you're creating exactly the same content every time you load so you should be storing the results for next time you load, this isn't an option as storage data is one of those annoying things with mobile for the end user (Why does this app have 300MB storage??? is a common complaint) so threads is the ideal solution for speeding this up.
Although it is annoyingly difficult to get it right.
I have a lot of delay with loading, which sucks on a mobile device, so I'm trying to speed that up by offloading content generation to threads.
Content generation is one of those things that should have a tiny load time as you're creating exactly the same content every time you load so you should be storing the results for next time you load, this isn't an option as storage data is one of those annoying things with mobile for the end user (Why does this app have 300MB storage??? is a common complaint) so threads is the ideal solution for speeding this up.
Although it is annoyingly difficult to get it right.