What is meant by the term "dirty object"?

dirty-data

Solution

A dirty object is an object that has changed in its content, but this content has not been synchronized back into the database/disk. It's a typical situation of desynchronization between a cache and a storage.

Problem

I see the term "dirty" or "dirty objects" a lot in programming. What does this mean?

Original source