In the documentation for AutoBoosting (http://world.episerver.com/documentation/developer-guides/find/NET-Client-API/searching/auto-boosting/) it states that a document is Decayed using the Age of the document.
"Normally, the date value is the document age or updated date value, and the fixed point in time is the search time."
My question here is, since the whole feature of Decay is based on this value, what actual property of the Content is read? Is it the SavedDate, or ChangeDate or CreatedDate? Or even PublishedDate?
In our solution we have a custom Content object that implements the two IContent, IChangeTrackable and currently I am setting the "CreatedDate" but not seeing any difference in scoreing. Do I also need to .Track() when using decay? Or do I need to implement and set some other interface on my custom indexed object?