Serialize CachedProjectConfig

This commit is the final piece of a series that allows us to
serialize CachedProjectConfig. After this commit, we can make
ProjectCache a serialized cache, which speeds up cold-starts.

Entities are moved to com.gerrit.entities where needed.

Change-Id: I501e68ae44d4bdfe0ecc6d000c4eb5644d0bec4c
This commit is contained in:
Patrick Hiesel
2020-07-16 16:48:50 +02:00
parent 535321f497
commit 4ba64aee31
242 changed files with 815 additions and 533 deletions

View File

@@ -2,8 +2,8 @@
package gerrit;
import com.google.gerrit.common.data.LabelType;
import com.google.gerrit.common.data.LabelTypes;
import com.google.gerrit.entities.LabelType;
import com.google.gerrit.entities.LabelTypes;
import com.google.gerrit.entities.PatchSetApproval;
import com.google.gerrit.server.query.change.ChangeData;
import com.google.gerrit.server.rules.StoredValues;

View File

@@ -14,7 +14,7 @@
package gerrit;
import com.google.gerrit.common.data.LabelType;
import com.google.gerrit.entities.LabelType;
import com.google.gerrit.entities.LabelValue;
import com.google.gerrit.server.rules.StoredValues;
import com.googlecode.prolog_cafe.exceptions.PrologException;