Invalidate the diff cache

Because we've tweaked the algorithm that handles intraline difference
and its results are cached in the "diff" cache, we need to force that
evict all entries on the next server restart.  Bumping its key version
is an easy way to do that.

Change-Id: Ic8670ecb136e6da1751245f21c2c7c41220b407d
Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
Shawn O. Pearce
2010-03-01 12:26:02 -08:00
parent 84e5bc0acc
commit c6c848690a

View File

@@ -35,7 +35,7 @@ import java.io.Serializable;
import javax.annotation.Nullable;
public class PatchListKey implements Serializable {
static final long serialVersionUID = 10L;
static final long serialVersionUID = 11L;
private transient ObjectId oldId;
private transient ObjectId newId;