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

org.yes.tools.pay.redis.RedisOps Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package org.yes.tools.pay.redis;

import java.util.concurrent.TimeUnit;

public interface RedisOps {

    String getValue(String key);

    void setValue(String key, String value, int expire, TimeUnit timeUnit);

    Long getExpire(String key);

    Boolean exists(String key);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy