What is recommended way to have mutable object structure that work in iOS? Mutable only from kotlin code. Structure have thousands-to-millions of objects.
o
olonho
09/30/2019, 9:12 AM
MutableList/MutableMap?
k
Kris Wong
09/30/2019, 1:17 PM
you may have to wait for the new memory model to be released before you do what you really want to do
Kris Wong
09/30/2019, 1:18 PM
for now you'll have to limit access to 1 thread only, so some basic inter-thread messaging
j
Jeremy
09/30/2019, 2:34 PM
Millions of objects on a mobile device in memory? Leveraging something like sqlite not option?