abstract class CacheStore { Future read(String key); Future write(String key, T value); Future remove(String key); }