If I have documents in a collection that I would like ordered, it seems like there would be a lot of writes if I have a field in each document and reorder whichever ones are out of order after I drag an item in a listview.
What are some other options?
I'm thinking of just having an array field for each reorderable listview I have my app, and storing that in the user's document (or maybe even make another collection just for listviews?). That array would contain references, or names, for each item in the array. That way I would just need to do one write to reorder a listview.
Thoughts?