I see that many examples use List for "many" relations, however, Set seems to better fulfil the role since lookup can happen in O(1) while the list search is O(N/2). Is there any reason why List is the preferred type to use?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Check yourself, Ebean's authors answered it already with details in article: You'll find there a sumarized description of each type and also comparison between chosen types. |
|||
|
|
Duplication is important only in case of ManyToMany relations, in other cases the ORM handles duplications in List as well. |
|||
|
|
|
It depends on the situation you use. |
|||
|
|
|||
|
|
|
I have always assumed that a List preserves any order that was the result of the query to the underlying database. |
|||
|
|