All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alicp.jetcache.embedded.EmbeddedCacheConfig Maven / Gradle / Ivy

The newest version!
package com.alicp.jetcache.embedded;

import com.alicp.jetcache.CacheConfig;
import com.alicp.jetcache.anno.CacheConsts;

/**
 * Created on 16/9/7.
 *
 * @author huangli
 */
public class EmbeddedCacheConfig extends CacheConfig {
    private int limit = CacheConsts.DEFAULT_LOCAL_LIMIT;

    public int getLimit() {
        return limit;
    }

    public void setLimit(int limit) {
        this.limit = limit;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy