What is recommended way to have mutable object str...
# kotlin-native
k
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
MutableList/MutableMap?
k
you may have to wait for the new memory model to be released before you do what you really want to do
for now you'll have to limit access to 1 thread only, so some basic inter-thread messaging
j
Millions of objects on a mobile device in memory? Leveraging something like sqlite not option?