Skip to content

henrykin/ecache

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

ecache

简单的缓存系统 纯属学习

介绍

ECache -> easy cache 简单粗暴的命名

之前自己在做一个项目,服务器需要接入缓存。由于是云主机(屌丝 你懂的),那点内存根本不够再安装个memcache或者redis之类的缓存服务。当时就用了个最搓的办法,直接MAP放内存了。弊端每次重启缓存就没了。 后面有点空闲时间就想写个简单点的缓存(中间也有看下ehcache,代码挺复杂的,可以学习学习),能持久化就行。然后就写了这个。 还能用 ^.^

开始使用

  1. 使用Spring启动缓存、管理生命周期
<bean id="cache" class="com.ecache.CacheManager">
    <property name="config">
        <bean class="com.ecache.Configuration">
            <property name="root" value="/usr/local/ecache/"/>
            <property name="space" value="10"/>  <!-- unit GB -->
        </bean>
    </property>
</bean>
  1. 代码中使用
class CacheTest {

  ECache<String, String> cache;

  public boolean put(String key, String value) {
    return cache.set(key, value);
  }

  public boolean put(String key, String value, long time) {
    return cache.set(key, value, time);
  }

  public String get(String key) {
    return cache.get(key);
  }

  public boolean remove(String key) {
    return cache.remove(key);
  }

  public boolean clear() {
    return cache.clear();
  }

}

About

简单的缓存系统

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%