当前位置: 首页 > news >正文

redis做网站统计wordpress主题插件下载

redis做网站统计,wordpress主题插件下载,龙岗网站建设公司哪家口碑好,百度号码认证平台首页Redis限流插件-redis-cell redis-cell 是一个用rust语言编写的基于令牌桶算法的的限流模块#xff0c;提供原子性的限流功能#xff0c;并允许突发流量#xff0c;可以很方便的应用于分布式环境中。 下载redis-cell插件 访问Releases brandur/redis-cell (github.com) 上传…Redis限流插件-redis-cell redis-cell 是一个用rust语言编写的基于令牌桶算法的的限流模块提供原子性的限流功能并允许突发流量可以很方便的应用于分布式环境中。 下载redis-cell插件 访问Releases · brandur/redis-cell (github.com) 上传redis-cell插件到linux服务器 解压插件 [rootlocalhost plugin]# tar -zxvf redis-cell-v0.3.1-x86_64-unknown-linux-gnu.tar.gz libredis_cell.d libredis_cell.so拷贝libredis_cell.so到redis容器中 docker cp libredis_cell.so redis_6390:/usr/local/etc/redis修改后redis.conf文件 在redis.conf配置文件中引用插件 38 ################################## MODULES ##################################### 39 40 # Load modules at startup. If the server is not able to load modules 41 # it will abort. It is possible to use multiple loadmodule directives. 42 # 43 # loadmodule /path/to/my_module.so 44 loadmodule /usr/local/etc/redis/libredis_cell.so插件使用 查询插件是否已启用 输入命令: module list 127.0.0.1:6379 module list 1) 1) name2) redis-cell3) ver4) (integer) 1语法 127.0.0.1:6379 cl.throttle mytest 99 5 100 2 1) (integer) 0 #0 表示成功 1表示失败 2) (integer) 100 # 令牌桶的容量 3) (integer) 98 # 当前令牌桶的令牌数 4) (integer) -1 # 成功时该值为-1失败时表还需要等待多少秒可以有足够的令牌 5) (integer) 41 # 预计多少秒后令牌桶会满测试 多次从令牌桶取出数据 127.0.0.1:6379 cl.throttle mytest 99 5 100 40 1) (integer) 0 2) (integer) 100 3) (integer) 54 4) (integer) -1 5) (integer) 911 127.0.0.1:6379 cl.throttle mytest 99 5 100 40 1) (integer) 0 2) (integer) 100 3) (integer) 14 4) (integer) -1 5) (integer) 1708 127.0.0.1:6379 cl.throttle mytest 99 5 100 40 1) (integer) 1 #失败拒绝取出 2) (integer) 100 3) (integer) 14 4) (integer) 505 # 取出失败令牌桶还有14个令牌还需505秒才能够取出 5) (integer) 1705springboot使用令牌 引入redis dependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-web/artifactId /dependencydependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-data-redis/artifactId /dependencyyml配置 server:port: 10022 spring:redis:host: 192.168.198.128port: 6390redis配置 package com.wnhz.redis.config;import org.springframework.context.annotation.Bean; 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.serializer.GenericJackson2JsonRedisSerializer; import org.springframework.data.redis.serializer.StringRedisSerializer;Configuration public class RedisConfig {Beanpublic RedisTemplateString,Object redisTemplate(RedisConnectionFactory factory){RedisTemplateString,Object redisTemplate new RedisTemplate();redisTemplate.setConnectionFactory(factory);redisTemplate.setKeySerializer(new StringRedisSerializer());redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer());redisTemplate.setHashKeySerializer(new StringRedisSerializer());redisTemplate.setHashValueSerializer(new GenericJackson2JsonRedisSerializer());return redisTemplate;} }测试 PostMapping(/redisCell)public String redisCell() {String script return redis.call(cl.throttle,KEYS[1],ARGV[1],ARGV[2],ARGV[3],ARGV[4]);DefaultRedisScriptListLong defaultRedisScript new DefaultRedisScript();int maxBurst 99;int countPerPeriod 10;int period 100;int quantity 10;ListLong retVal redisTemplate.execute(new DefaultRedisScript(script, List.class),new ArrayListString() {{add(cell_key);}},maxBurst,countPerPeriod,period,quantity);System.out.println(retVal);if (1 retVal.get(0)) { //第一个返回为1,表示拒绝return 频繁访问服务器过载请过一会再来;}return SUCCESS;}运行结果 [0, 100, 90, -1, 101] redis-cell封装 /*** param key redis key* param maxBurst 令牌桶最大容量* param countPerPeriod 通过的令牌桶数(countPerPeriod/period 速率)* param period 时间* param quantity 取出数量* return List 返回集合中5个Long值* 第0个位置: 0 表示成功 1表示失败* 第1个位置: 令牌桶的容量* 第2个位置: 当前令牌桶的令牌数* 第3个位置: 成功时该值为-1失败时表还需要等待多少秒可以有足够的令牌* 第4个位置: 预计多少秒后令牌桶会满*/ public ListLong redisCell(String key,String maxBurst,String countPerPeriod,String period,String quantity) {final String script return redis.call(cl.throttle,KEYS[1],ARGV[1],ARGV[2],ARGV[3],ARGV[4]);connect();ListLong eval this.connection.sync().eval(script, ScriptOutputType.MULTI,new String[]{key},maxBurst,countPerPeriod,period,quantity);returnPool();return eval; }
http://www.pierceye.com/news/653840/

相关文章:

  • 北京优化词网站晋城企业网站建设
  • 商城网站 个人备案建设工程质量监理协会网站
  • 易企cms网站模板广告设计与制作好找工作吗
  • wordpress建站容易吗食品饮料网站源码
  • 做网站还有市场吗建一个网站花费
  • 惠州网站建设哪里有wap网站生成
  • 长沙网站外包公司吗搭建wordpress博客系统
  • 通州企业网站建设做网站合成APP
  • 深圳观澜网站建设室内设计软件手机版
  • 苏州建设网站服务国外做家装的网站有哪些
  • 做导航网站赚钱吗大兴区营销网络推广行业
  • 红衫中国网站建设福建手机版建站系统开发
  • 做平面的网站wordpress授权主题
  • 如何做织梦论坛类的网站官网建设目的
  • 安徽网新科技有限公司 网站开发静态网页报告
  • 营销做网站公司怎么做国际货运代理外贸网站
  • 网站建设部署与发布有效期宝石网站建设
  • 网站建设有什么需求分析现在网站都是拿什么软件做的
  • 网站建设需求分析报告撰写阿里云建设网站流程
  • 网站导航栏设计要求seo搜索引擎的优化
  • 杭州做商务网站全屋定制自己设计
  • 汉中定制网站建设公司南昌公司注册
  • 商务网站建设流程步骤小型公司注册资金写多少合适
  • 台州公司网站外包自己做网站运营
  • 聚名网站专业团队p图
  • 网站推广排名收费徐家汇网站建设
  • 做app软件大概多少钱宁波seo优化项目
  • 网站建设土豆视频教程最专业微网站首选公司
  • 合肥做检查军大网站家装公司名称
  • 网站搜索怎么做的苏州网站建设介绍