Mongoose 스키마에서 어레이 크기에 대한 제한을 설정하는 방법 Mongoose 스키마를 만들 때 어레이 크기 제한을 설정할 수 있는 방법이 있는지 알려 주시겠습니까?예를들면 var peopleSchema = new Schema({ name: { type: String, required: true, default: true }, /* here I want to have limit: no more than 10 friends. Is it possible to define in schema?*/ friends: [{ type: Schema.Types.ObjectId, ref: 'peopleModel' }] }) 스키마 설정을 약간 조정하면 유효성 검사 옵션을 추가할 수 있습니다. var peopleSch..