Using MongoDB, I want to make a list of items that users can reorder, and the order is saved to the database.
As for how this list is saved, I'd like advice on what more experienced devs would use.
Using a linked list seems like it would be more efficient than an array for updating the order of the list [O(1) vs O(n)?], but less efficient for retrieving the full list [O(n) vs O(1)?]. Am I correct about this? Is there anything else I should be considering? I mainly just want to know how others would implement this.
I'm using Mongoose with Next.js (TypeScript) to query the database.
One possible setup I've considered:
const listSchema = new mongoose.Schema({
name: {
type: String,
required: true,
trim: true,
},
description: String,
image: String,
firstItem: {
type: mongoose.Schema.Types.ObjectId,
ref: "Item",
},
});
const itemSchema = new mongoose.Schema({
name: {
type: String,
required: true,
trim: true,
},
description: String,
image: String,
nextItem: {
type: mongoose.Schema.Types.ObjectId,
ref: "Item",
},
previousItem: {
type: mongoose.Schema.Types.ObjectId,
ref: "Item",
},
});