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

com.gitee.apanlh.util.cache.redis.api.RedisSet Maven / Gradle / Ivy

There is a newer version: 2.0.0.2
Show newest version
package com.gitee.apanlh.util.cache.redis.api;

import com.gitee.apanlh.util.cache.redis.RedisAutoAppendKey;
import org.springframework.data.redis.core.SetOperations;

/**	
 * 	Set结构
 * 	
 * 	#mark 完善
 * 	@author Pan
 */
public class RedisSet extends AbstractRedis {

	public RedisSet(RedisAutoAppendKey redisAutoKey) {
		super(redisAutoKey);
	}
	
	private SetOperations executor;

	@Override
	public void executorConfigure() {
		this.executor = getRedisTemplate().opsForSet();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy