org.xson.web.cache.creater.RedisCreater Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xco-web Show documentation
Show all versions of xco-web Show documentation
xco-web is an easy to use control layer framework, is part of the SOA system, using xml language to describe the controller.
The newest version!
package org.xson.web.cache.creater;
import org.xson.web.cache.ICache;
import org.xson.web.cache.RedisCache;
import org.xson.web.cache.vo.CacheVo;
public class RedisCreater implements ICreate {
public ICache create(CacheVo cacheVo) {
RedisCache cache = new RedisCache();
cache.start(cacheVo.getResource(), cacheVo.getProperties());
return cache;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy