Search code examples
dirty-data

What is meant by the term "dirty object"?


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


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.