Switch from Java serialization to JSON for memcache storage.

This commit is contained in:
Moxie Marlinspike
2014-07-22 13:43:37 -07:00
parent 4cd098af1d
commit 160c0bfe14
7 changed files with 106 additions and 60 deletions

View File

@@ -45,6 +45,8 @@ public class MemcacheHealthCheck extends HealthCheck {
return Result.unhealthy("Fetch failed");
}
this.client.delete("HEALTH" + random);
return Result.healthy();
}