Apt实现一款缓存小框架
2019-04-13 本文已影响93人
勤能不能补拙
一款简单的使用apt实现的缓存处理器,默认使用gson+sp实现,只需要编写实体类,添加注解即可自动生成缓存代码,无需做任何额外操作。
优点
1,将杂乱的配置文件以面向对象的方式管理。
2,不需要编写繁琐重复的缓存具体代码,一个注解搞定。
3,默认以gson+sp的方式进行缓存,对sp文件以对象为单位进行拆封,提高sp的效率。
4,可以自定义缓存,数据来源等,可以全局的配置,以及对单一的对象实体进行灵活配置。
5,默认使用sp+内存的方式进行管理,持久化的同时提高缓存读写的性能
...
依赖地址
maven { url 'https://jitpack.io' }
implementation 'com.github.wxxewx.LuoCache:luocache:v0.3'
annotationProcessor 'com.github.wxxewx.LuoCache:luocache-processor:v0.3'
如何使用
第一步,编写您需要缓存的实体类
@LuoCache
public class User {
String name;
String city;
int age;
Account account;
}
第二步:build
第三步: build之后会生成您的实体类名称+manage的单例
public class UserManager {
...
}
第四步:初始化
//使用默认的缓存策略进行缓存(gson+sp)
LuoCache.init(getApplication());
//使用自定义的缓存策略
LuoCache.init(getApplication(), SpStrategy.class);
如何自定义: 实现IStrategy接口即可
public class MyCache implements IStrategy {
@Override
public void initCache(Application context, String cacheName) {
}
@Override
public Object getCache(String key, Class type) {
return null;
}
@Override
public boolean setCache(String key, Object value) {
return false;
}
@Override
public boolean removeCache(String key) {
return false;
}
}
第五步:设置缓存内容
UserManager.getInstance().setName(name);
UserManager.getInstance().setAge(Integer.parseInt(age));
UserManager.getInstance().setCity(city);
...
第六步:获取缓存内容
String name = UserManager.getInstance().getName();
Account account = UserManager.getInstance().getAccount();
int age = UserManager.getInstance().getAge();
第七步:清除缓存
UserManager.getInstance().removeName(); //清除单个配置字段
UserManager.getInstance().clear(); //清空
给单个的缓存实体配置不同的缓存策略
UserManager.getInstance().setStrategy(new SpStrategy());
github地址
https://github.com/wxxewx/LuoCache