Cache.java 352 B

12345678910111213141516
  1. package com.yihu.jw.cache;
  2. import java.util.Set;
  3. /**
  4. * Created by LiTaohong on 2017/12/04.
  5. */
  6. public interface Cache {
  7. void setData(String module, String key, String value);
  8. String getData(String module, String key);
  9. Set<String> keys(String module, String pattern);
  10. void removeData(String module, String key) throws Exception;
  11. }