In the context of ORM / Lazy loading of entities, my understanding of the term "Hydration" is as follows:

"Hydrating" describes the process of populating some or all of the previously unpopulated attributes of an entity fetched using lazy loading.

Eg: class Author is loaded from the database:

@Entity
class Author
{
     @Id
     long id;
     List<Book> books;
}

Initially, the books collection is not populated.

It is my understanding that the process of loading the books collection from the database is referred to as "Hydrating" the collection.

Is this definition correct, and is the term common place? Is there another more common term I should be using for this process?

link|improve this question

73% accept rate
To the person who voted to close the question : I've added an example to help clarify what I'm asking. Please comment if it's still unclear and let me know what I could clarify. – Marty Pitt Feb 8 '11 at 3:29
feedback

4 Answers

up vote 7 down vote accepted

Hydrate began as a term for populating an instantiated (but empty) value-object/model from a db, (specifically in Hibernate.)

Various other ORM's and tools like BizTalk use Hydrate and other related terminology these days, (e.g. BizTalk uses the term Dehydrated to mean an instance is available but not yet populated.)

Personally I'm averse to redundant terminology, populated means the exact same thing, without the pointless metaphorical language, which adds nothing except confusion.

The BizTalk extension of this style of language, specifically Dehydrated is completely redundant. Have people really forgotten how to say, empty?

Hydrated and it's related collection of redundant metaphors are just pure marketing fluff, they really have no place as technical terms. Sadly though, Hibernate and other tools which use these terms are well entrenched in the development world, so Hydrate and the rest are here to stay.

link|improve this answer
+1 for "populated" ... simplest is best. – Marty Pitt Feb 8 '11 at 4:24
populated is also metaphorical ... – huttelihut Apr 4 '11 at 12:31
Of course it is, however, it was first, it's simple and as such it's far less convoluted. You may have also realised at this point that pretty much everything on the software layer, even a bit value being "true/false" or "1/0" is metaphorical... Should we start calling 'true' something else now? How about 'almost certainly' in respect to Heisenberg? – Slomojo Apr 4 '11 at 20:46
feedback

hydration is a loose term. In our company we use "rehydration" as he term to load all the object properties of an entire object graph. Here is a post that talks about various levels of hydration (again this is a general usage though they are using in the context of hibernate).

link|improve this answer
feedback

I think the term 'hydrate(s)' in the context of ORM simply means the framework gives you objects. So the objects are 'hydrated' by the ORM after the data is pulled from the store. The term can be applied anytime an ORM framework gives you an object/graph that is represented in the store.

link|improve this answer
feedback

the term hydration is extensively used in the guts of the hibernate library to refer to the process of setting the fields of a recently loaded object, and is indeed related to the object graph populaton.
but it's different than the concept of lazy loading, that is, giving the user a half-filled object and letting the rest be loaded on demand.
the hydration is always performed, lazily or eagerly and it's hibernate stuff.
lazy loading is just for convenience

replace hibernate with the name of your orm of choice

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.