I am new to hybris, What is diff b/w relations and collections, why we go for relations instead of collections.
Collection Type: Collection Types are comma separated Pks that gets stored in the database. For example, when we need to store the keywords applicable for the product we can use collection type. Relation: Relation is used when we need to model the association between objects.
To create dependency between 2 types is called relation between the types. Relation is basically used between 2 itemtypes in hybris So each of them can also access the instance of its partner itemtype. It's a relation between 2 table in the terms of Database.
"How the data is stored in both of them" In collections, a new column is created in table(item), containing comma separated primary keys of the list elements. The actual list elements are stored in another table. In relations, a new table is created as a link table between two item types.
Basically, there are two technically different ways of modeling collections in hybris:
CollectionTypes
RelationTypes
I'm totally agree with @KilleKat comment, he has mentioned all the differences between CollectionType and RelationType in Hybris.
I attached bellow some diagrams to have a more clearer view about the subject.
CollectionTypes: (to be used wisely)
RelationTypes: (recommended)
As Sumit says above,
CollectionType is discouraged and RelationType should be used whenever possible. This is because, the maximum length of the database field of a CollectionType is limited and a CollectionType with many values may end up getting its values truncated. In addition, the values of CollectionTypes are written in a CSV format and not in a normalized way. By consequence, hybris recommends using RelationTypes whenever possible.
For each entry within a relation (in other words, for each link from one item to another), there is a LinkItem instance that stores the PKs of the related items. LinkItem instances are handled transparently and automatically by the platform: On the API level, you only need to use the respective getter and setter methods.
Its important to understand hybris strongly discourages using collections, use relations instead.
As stated above collections are maintained as comma separated from a data structure prospective and thats why you might see problem of data truncate, where as relations have rational data structure of creating a new table and map table to join the two table.
Collection because of there storage structure - can't be searched.
I would say for a very simple (1:n) relationship with limited data - you can still use collections. While for any complex (m:n /1:n) relationship always use relations
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With