| | |
| | | import org.springframework.context.annotation.Configuration;
|
| | | import org.springframework.data.redis.connection.RedisConnectionFactory;
|
| | | 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;
|
| | |
| | | template.afterPropertiesSet();
|
| | | return template;
|
| | | }
|
| | |
|
| | | @Bean
|
| | | public DefaultRedisScript<Long> limitScript()
|
| | | {
|
| | | DefaultRedisScript<Long> redisScript = new DefaultRedisScript<>();
|
| | | redisScript.setScriptText(limitScriptText());
|
| | | redisScript.setResultType(Long.class);
|
| | | return redisScript;
|
| | | }
|
| | |
|
| | | /**
|
| | | * 限流脚本
|
| | | */
|
| | | private String limitScriptText()
|
| | | {
|
| | | return "local key = KEYS[1]\n" +
|
| | | "local count = tonumber(ARGV[1])\n" +
|
| | | "local time = tonumber(ARGV[2])\n" +
|
| | | "local current = redis.call('get', key);\n" +
|
| | | "if current and tonumber(current) > count then\n" +
|
| | | " return 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;";
|
| | | }
|
| | | }
|