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

io.jboot.components.cache.JbootCache Maven / Gradle / Ivy

/**
 * Copyright (c) 2015-2020, Michael Yang 杨福海 ([email protected]).
 * 

* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *

* http://www.apache.org/licenses/LICENSE-2.0 *

* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.jboot.components.cache; import com.jfinal.plugin.ehcache.IDataLoader; import java.util.List; public interface JbootCache extends com.jfinal.plugin.activerecord.cache.ICache { @Override public T get(String cacheName, Object key); @Override public void put(String cacheName, Object key, Object value); public void put(String cacheName, Object key, Object value, int liveSeconds); public List getKeys(String cacheName); @Override public void remove(String cacheName, Object key); @Override public void removeAll(String cacheName); public T get(String cacheName, Object key, IDataLoader dataLoader); public T get(String cacheName, Object key, IDataLoader dataLoader, int liveSeconds); public Integer getTtl(String cacheName, Object key); public void setTtl(String cacheName, Object key, int seconds); public void refresh(String cacheName, Object key); public void refresh(String cacheName); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy