prometheus函数常用 increase函数 应用场景:取指标的一段时间的增量,就是一小时内的最大值减去最小值,适合counter类型指标 increase(login[1h]) 登录次数一小时以内的增量 increase(login{status="false"}[1h]) 登录错误一小时以 ...
分类:
其他好文 时间:
2020-07-27 23:43:40
阅读次数:
102
HashMap 第一种也是我最先想到的使用HashMap迭代数组,数组元素做Map的K,V随意 最后比较 Map.len() 和 Vec.len() 。耗时 4ms ; use std::collections::HashMap; let mut map: HashMap<i32,i32> = Ha ...
分类:
其他好文 时间:
2020-07-27 17:42:29
阅读次数:
68
# -*- coding: utf-8 -*- # @Time : 2020/7/25 22:45 # @Author : Breeze # @FileName: login_while.py user_name = "Breeze" password = "123456789" counter = ...
分类:
其他好文 时间:
2020-07-27 15:35:26
阅读次数:
67
set简介: 顺序容器包括vector、deque、list、forward_list、array、string,所有顺序容器都提供了快速顺序访问元素的能力。 关联容器包括set、map 关联容器和顺序容器有着根本的不同:关联容器中的元素是按关键字来保存和访问的。与之相对,顺序容器中的元素是按它们在 ...
分类:
编程语言 时间:
2020-07-27 09:48:43
阅读次数:
107
写到到数据库的模型 using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace ...
package com.jeesite.modules.jiQiao.web;import com.google.common.collect.Lists;import java.util.ArrayList;import java.util.Collections;public class Dem ...
分类:
编程语言 时间:
2020-07-26 22:57:16
阅读次数:
89
我是先写的Model的表: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Compone ...
分类:
其他好文 时间:
2020-07-26 22:51:44
阅读次数:
79
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Text; using System.Drawing; using System.IO; namespa ...
https://docs.oracle.com/javase/specs/jvms/se8/html/ 介绍 JVM中的程序计数寄存器(Program Counter Register)中,Register的命名源于CPU的寄存器,寄存器存储指令相关的现场信息。CPU只有把数据装载到寄存器才能够运行 ...
分类:
其他好文 时间:
2020-07-24 18:58:53
阅读次数:
81
setState class组件的特点,就是拥有特殊状态并且可以通过setState更新状态并重新渲染视图,是React中最重要的api。 1. setState为什么是异步 // 批量 this.setState({ counter: this.state.counter + 1 }); this ...
分类:
其他好文 时间:
2020-07-24 16:34:51
阅读次数:
74