From 376035e0b8ac2e0e3bb11395d82c7437f8ce460d Mon Sep 17 00:00:00 2001 From: Petrutiu Mihai Date: Mon, 18 Jul 2016 17:30:03 +0300 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a51d8ff..b7d750a 100644 --- a/README.md +++ b/README.md @@ -285,7 +285,8 @@ Sequence diagram: ### e. Flavors * Classical memento: Save each time the entire state -* Iterative memento: Save the changes that occured from the previous state(delta), instead of saving the entire state again, (e.g. Git) +* Iterative memento: Save the changes that occured from the previous state(delta), instead of saving the entire state again +* Compressed memento: You could store the objects compressed, generally you would use delta encoding (like git) to store the files. see more about this in comments in code ### f. Examples * Employee example1: Starting class: Employee.EmployeeExample