你必须知道的DNS那些事

DNS(Domain Name System) 域名系统 基本概念 域名系统 (DNS) 将人类可读的域名 (例如,www.baidu.com) 转换为机器可读的 IP 地址。 DNS

虚拟化与容器化漫谈

虚拟化的概念 什么是虚拟化 Virtualization? 虚拟化是一种技术,可以利用以往局限于硬件的资源来创建有用的 IT 服务。它让您能够将物理计算

爱生气的书店老板

今天,书店老板有一家店打算试营业 customers.length 分钟。每分钟都有一些顾客(customers[i])会进入书店,所有这些顾客都会在那一分钟结束后离开。 在某

Rust奇奇怪怪的语法

Rust 语法奇奇怪怪的写法。 ? 操作符 (Error propagation) 函数调用后带 ? 什么含义 1 File::create(filename)?; 等同于 1 2 3 4 let output = match File::create(filename){ Ok(f) => { f } Err(e) => { return Err(e); } };

在线工具类网站

工具类网站 图片压缩 tinify.cn 使用智能有损压缩技术将您的PNG文件的文件大小降低,对视觉的影响几乎不可见。好用,靠谱。 语言学习 国学大师 国学学习百宝箱。

Multiples of 3 and 5

Multiples of 3 and 5 If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000. 3或5的倍数 在小于10的自然数中,3或5的倍

压测工具

命令行下常用的压测工具有ab和wrk。 ab 1 yum install httpd-tools wrk wrk 是一款 C 语言开发的压测工具,并且支持使用LuaJIT定制化请求。 1 wrk -t12 -c400 -d30s http://127.0.0.1:8080/index.html 1 2 3 4 5 6