码迷,mamicode.com
首页 >  
搜索关键字:boa    ( 1073个结果
使用redis-exporter对redis集群进行性能监控
redis集群有三种模式,主从,sentinel(哨兵),cluster。关于这三种模式的介绍和部署,其它文章也有相关介绍,本人参考了他人的博客完成了三种模式的部署,博客地址在评论区。目前redis使用主从模式,集群信息如下:[root@masterredis]#redis-cli-h192.168.122.7-a123456inforeplicationWarning:Usingapasswor
分类:其他好文   时间:2020-05-26 20:20:54    阅读次数:141
CAT ET III Caterpillar Scanner Features
CAT ET III Caterpillar Scanner Features: Display graph and log status parameters. Retrieve prognostic data including histograms, engine totals for fue ...
分类:其他好文   时间:2020-05-22 19:37:07    阅读次数:70
CAT ET III Caterpillar Scanner Features
CAT ET III Caterpillar Scanner Features: Display graph and log status parameters. Retrieve prognostic data including histograms, engine totals for fue ...
分类:其他好文   时间:2020-05-22 19:09:25    阅读次数:65
在微信小程序中绘制图表(part2)
本期大纲 1、确定纵坐标的范围并绘制 2、根据真实数据绘制折线 相关阅读:在微信小程序中绘制图表(part1)在微信小程序中绘制图表(part3) 关注我的 github 项目 查看完整代码。 确定纵坐标的范围并绘制 为了避免纵坐标的刻度出现小数的情况,我们把纵坐标分为5个区块,我们取最小单位刻度为 ...
分类:微信   时间:2020-05-19 14:42:38    阅读次数:91
在微信小程序中绘制图表(part3)
本期大纲 1、饼图绘制2、如何添加动画效果3、使用rollup构建项目 相关阅读:在微信小程序中绘制图表(part1)在微信小程序中绘制图表(part2) 关注我的 github 项目 查看完整代码。 很久没更新了,最近事情比较多,今天来把坑填上! 饼图绘制 先看一下API 下面开始(使用ES6语法 ...
分类:微信   时间:2020-05-18 22:47:49    阅读次数:117
HTML5离线存储整理
前端html部分 //canvas.html <!DOCTYPE html> <html manifest="/test.appcache"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <tit ...
分类:Web程序   时间:2020-05-18 12:03:32    阅读次数:61
华为交换机查询启动文件
<交换机名>displaystartupMainBoard:Configuredstartupsystemsoftware:flash:/S2352_S3352-V100R005C01SPC100.ccStartupsystemsoftware:flash:/S2352_S3352-V100R005C01SPC100.ccNextstartupsystemsoftware:flash:
分类:其他好文   时间:2020-05-14 19:05:31    阅读次数:213
算法汇总学习记录
1.斐波那契数列 (推荐使用动态规划的,当输入n=40的时候就能明显的感觉出递归的不足了) 这个递归思想是最简单的了static int feiboArr(int n) { if (n == 0) { return 0; } else if (n==1) { return 1; } else if ...
分类:编程语言   时间:2020-05-11 15:09:26    阅读次数:59
关于APP内嵌H5后退按钮问题
最近都在用vue做APP内嵌H5页面,在APP点击后退时如果在路由中跳转过多次 点后退会后退很多次才能退出页面 用户体验很差。 下面来说下解决方法 因为hisotry模式官方说需要服务器配置所以路由一直在用hash模式,针对这一需求需要了解h5新加的history模式 H5引入了history.pu ...
分类:移动开发   时间:2020-05-10 12:48:31    阅读次数:99
1128 N Queens Puzzle (20分)
The "eight queens puzzle" is the problem of placing eight chess queens on an 8 chessboard so that no two queens threaten each other. Thus, a solution ...
分类:其他好文   时间:2020-05-05 20:21:48    阅读次数:56
1073条   上一页 1 ... 6 7 8 9 10 ... 108 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!