ForgottenKnowledge Class
Assembly: Microsoft.Synchronization (in microsoft.synchronization.dll)
[SerializableAttribute] [XmlRootAttribute(Namespace="http://schemas.microsoft.com/2008/03/sync/", ElementName="forgottenKnowledge")] public class ForgottenKnowledge : SyncKnowledge, ISerializable
/** @attribute SerializableAttribute() */ /** @attribute XmlRootAttribute(Namespace="http://schemas.microsoft.com/2008/03/sync/", ElementName="forgottenKnowledge") */ public class ForgottenKnowledge extends SyncKnowledge implements ISerializable
The forgotten knowledge tracks the maximum version of tombstones that have been cleaned up. When an item is deleted from the item store, the metadata for that item is kept, but the item is marked as deleted. Metadata for a deleted item is called a tombstone. Tombstones must be periodically cleaned up or they will eventually use too much space in the item store. When a tombstone is removed from the metadata, the forgotten knowledge must be updated to contain the version of the removed tombstone. Be aware that forgotten knowledge is an overestimation of which items have had their metadata removed. Therefore, the forgotten knowledge might also contain items that still have active entries in the metadata.
Sync Framework uses the forgotten knowledge to detect an out-of-date synchronization destination. For more information, see Managing Tombstones and Recovering an Out-of-Date Replica.