Difference between relations and collections in hy

2019-02-13 14:07发布

I am new to hybris, What is diff b/w relations and collections, why we go for relations instead of collections.

标签: hybris
8条回答
戒情不戒烟
2楼-- · 2019-02-13 14:44

In collections we have limited size, If we are trying to insert more data it will be truncated. Relations we can use n no. of data.

Collections is faster than relations, but in collections we can use only one to many relationship only, for many to many we should use relations only....

查看更多
贪生不怕死
3楼-- · 2019-02-13 14:49

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) enter image description here

RelationTypes: (recommended) enter image description here

查看更多
可以哭但决不认输i
4楼-- · 2019-02-13 14:52

Collections are persisted as a serialized object in a single column in the DB.

Relations are persisted in the usual relational database way - using a foreign key on another table or a link table (depending on the cardinality of the relation)

Collection types are discouraged as they cannot be searched using flexiblesearch and have significant performance limitations when dealing with collections of more than a handful of objects.

查看更多
做自己的国王
5楼-- · 2019-02-13 15:01

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

查看更多
倾城 Initia
6楼-- · 2019-02-13 15:04

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.

  • CollectionType: CollectionTypes are based on the Java Collection class i.e. a Collection is a list of elements.
    1:n - Keep links to the respective values via an attribute on the source item, for example, a list of Primary Keys.
    n:1 - Store the attribute values at the respective target items and have a getter method at the source type to retrieve the values.
  • RelationType:
    n:m - Internally, the elements on both sides of the relation are linked together via instances of a helper type called LinkItem. LinkItems hold two attributes, SourceItem and TargetItem, that hold references to the respective item.

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.

查看更多
唯我独甜
7楼-- · 2019-02-13 15:04

Collection The Root Interface in the Collection Hierarchy.

Collection represents a group of objects, known as its elements.

Some collections allow Duplicate elements and others do Not.

Some are Ordered and others Un-Ordered

To get a really good idea of what each collection is good for and their performance characteristics I would recommend getting a good idea about Data Structures like Arrays, Linked Lists, Binary Search Trees, Hashtables, as well as Stacks and Queues. There is really no substitute to learning this if you want to be an Effective Programmer in any Language.

HashMap is only really used for cases when there is some logical reason to have special keys corresponding to values

查看更多
登录 后发表回答