Hi teams,
I just upgraded to dfx 12.1 and I am now getting a bunch of Buffer-realted deprecation warning (eg. toArray()).
I used to manipulate data with Array, but then .append() got deprecated, with suggestion to use Buffer instead.
So then I was still using stable Arrays for storing while manipulating data with Buffer.
Now conversion back to Array won’t be possible in the future (Buffer.toArray being deprecarted).
Can anyone assist me in understanding what the patterns I should follow here ?
What data type should I use for small lists of entries very frequently queried that are somewhat frequently updated?