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

group.rober.base.adapter.ShiroCacheWriterExt Maven / Gradle / Ivy

The newest version!
package group.rober.base.adapter;


import org.springframework.data.redis.cache.RedisCacheWriter;

import java.util.Collection;
import java.util.Set;

public interface ShiroCacheWriterExt extends RedisCacheWriter {
    int size(String name, byte[] pattern);

    Set keys(String name, byte[] pattern);

    Collection values(String name, byte[] pattern);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy