| | |
| | | import org.springframework.data.redis.core.RedisTemplate;
|
| | | import org.springframework.data.redis.core.script.DefaultRedisScript;
|
| | | import org.springframework.data.redis.serializer.StringRedisSerializer;
|
| | | import com.fasterxml.jackson.annotation.JsonAutoDetect;
|
| | | import com.fasterxml.jackson.annotation.JsonTypeInfo;
|
| | | import com.fasterxml.jackson.annotation.PropertyAccessor;
|
| | | import com.fasterxml.jackson.databind.ObjectMapper;
|
| | | import com.fasterxml.jackson.databind.jsontype.impl.LaissezFaireSubTypeValidator;
|
| | |
|
| | | /**
|
| | | * redis配置
|
| | |
| | | template.setConnectionFactory(connectionFactory);
|
| | |
|
| | | FastJson2JsonRedisSerializer serializer = new FastJson2JsonRedisSerializer(Object.class);
|
| | |
|
| | | ObjectMapper mapper = new ObjectMapper();
|
| | | mapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
|
| | | mapper.activateDefaultTyping(LaissezFaireSubTypeValidator.instance, ObjectMapper.DefaultTyping.NON_FINAL, JsonTypeInfo.As.PROPERTY);
|
| | | serializer.setObjectMapper(mapper);
|
| | |
|
| | | // 使用StringRedisSerializer来序列化和反序列化redis的key值
|
| | | template.setKeySerializer(new StringRedisSerializer());
|
| | |
| | | "local time = tonumber(ARGV[2])\n" +
|
| | | "local current = redis.call('get', key);\n" +
|
| | | "if current and tonumber(current) > count then\n" +
|
| | | " return current;\n" +
|
| | | " return tonumber(current);\n" +
|
| | | "end\n" +
|
| | | "current = redis.call('incr', key)\n" +
|
| | | "if tonumber(current) == 1 then\n" +
|
| | | " redis.call('expire', key, time)\n" +
|
| | | "end\n" +
|
| | | "return current;";
|
| | | "return tonumber(current);";
|
| | | }
|
| | | }
|