package crmdna.counter; import com.googlecode.objectify.annotation.Cache; import com.googlecode.objectify.annotation.Entity; import com.googlecode.objectify.annotation.Id; @Entity @Cache public class ShardEntity { @Id String key; long count; }