I have a Grails domain classes like:
class Note {
static belongsTo = Person
Person person // the person who is the author of the note
static hasMany = [comments:Comment]
List comments = new ArrayList()
String reviewerId // id of the Person domain class who is the reviewer of this note (not the same as the author of the note)
String noteText
}
class Comment {
static belongsTo = Note
Note note
String commentText
}
If I replace above classes with:
class Note {
String pid // id of the Person class who is the author of the note
static hasMany = [comments:Comment]
List comments = new ArrayList()
String reviewerId // id of the Person domain class who is the reviewer of this note (not the same as the author of the note)
String noteText
}
class Comment {
String noteId // id of the Note to which this comment belongs
String commentText
}
Which design is better in terms of performance and also in case if non-relational database ( such as NoSQL) is used in the future?