Database Sharding Generally speaking, database sharding has the following methods: Hash-based sharding: Calculating the hash value based on the ident[......] 继续阅读

2022年2月6日 0条评论 2749点热度 0人点赞 痴者工良 阅读全文

HammerDB is a database stress testing tool, download link: https://www.hammerdb.com/download.html HammerDB is a leading benchmark and load testing sof[......] 继续阅读

2022年1月17日 1条评论 5501点热度 1人点赞 痴者工良 阅读全文

Hammerdb 是一个数据库压力测试工具,下载地址: https://www.hammerdb.com/download.html HammerDB 是领先的基准测试和负载测试软件,适用于世界上最流行的数据库,支持 Oracle 数据库、SQL Server、IBM Db2、MySQL、Maria[......] 继续阅读

2022年1月17日 1条评论 5527点热度 1人点赞 痴者工良 阅读全文

scanme.nmap.org 是要扫描的域名或 IP 地址。 package main import ( "fmt" "net" "sort" ) func main() { ports := make(chan int, 100) results :=[......]继续阅读

2021年11月17日 0条评论 2324点热度 0人点赞 痴者工良 阅读全文

scanme.nmap.org is the domain or IP address to be scanned. package main import ( "fmt" "net" "sort" ) func main() {[......]继续阅读

2021年11月17日 0条评论 88点热度 0人点赞 痴者工良 阅读全文

Manjaro 更新软件、安装软件时,提示: 正在下载所需的密钥...... :: 是否导入 PGP 公钥 A85E811EB4CA2E08 ,"Caleb Maclennan <alerque@archlinux.org>"? [Y/n] y :: 是否导入 PGP 公钥 E0959F[......]继续阅读

2021年10月5日 0条评论 8594点热度 7人点赞 痴者工良 阅读全文

Manjaro prompts when updating or installing software: 正在下载所需的密钥...... :: 是否导入 PGP 公钥 A85E811EB4CA2E08 ,"Caleb Maclennan <alerque@archlinux.org[......]继续阅读

2021年10月5日 0条评论 8623点热度 7人点赞 痴者工良 阅读全文

为了配置 Linux 免密登录,之前找到方法都是比较麻烦的,后面发现一种只需要两个步骤就能完成免密登录配置的方法。 假如,在 Linux A 免密登录 Linux B。 那么在 A 上生成 私钥公钥: ssh-keygen 生成后,将公钥推送到 B 中: ssh-copy-id <user&[......]继续阅读

2021年8月4日 0条评论 3185点热度 1人点赞 痴者工良 阅读全文

为了配置 Linux 免密登录,之前找到的方法都是比较麻烦的,后面发现一种只需要两个步骤就能完成免密登录配置的方法。 假如,在 Linux A 免密登录 Linux B。 那么在 A 上生成 私钥公钥: ssh-keygen 生成后,将公钥推送到 B 中: ssh-copy-id <user[......]继续阅读

2021年8月4日 0条评论 86点热度 1人点赞 痴者工良 阅读全文

学习要求 在前面提到过,数据结构的逻辑结构有线性结构和非线性结构,线性结构的元素是具有前趋和后续的 1:1 的关系。非线性结构有集合、图、树。 本篇讨论的线性表是线性结构,要求掌握线性表的定义和基本操作。 线性表的定义和基本操作 【1】线性表的定义 线性表示例: A、B、C、D ... Z 等26个[......] 继续阅读

2021年4月11日 0条评论 3470点热度 0人点赞 痴者工良 阅读全文

Learning Requirements As mentioned earlier, the logical structure of data consists of linear structures and non-linear structures. The elements of a l[......] 继续阅读

2021年4月11日 0条评论 90点热度 0人点赞 痴者工良 阅读全文

学习要求 算法复杂度计算方法 算法时间复杂度和空间复杂度的分析方法。 算法的描述和分析 【1】 数据的运算通过算法(Algorithm)描述的 算法是数据结构课程的重要内容之一。 算法是任意一个良定义的计算过程,它以一个或多个值作为输入,并产生一个或多个值作为输出。因此,算法是一系列将输入转换为输出[......] 继续阅读

2021年4月11日 0条评论 3782点热度 0人点赞 痴者工良 阅读全文

Learning Requirements Algorithm Complexity Calculation Methods Analysis methods for time complexity and space complexity of algorithms. Algorithm Desc[......] 继续阅读

2021年4月11日 0条评论 78点热度 0人点赞 痴者工良 阅读全文

学习要求 概念和术语 数据结构的基本概念:数据、数据元素、数据结构、数据的逻辑结构、物理结构、算法等。 基本概念和术语 【1】 数据 (Data) 是信息的载体,能够被计算机识别、存储和加工处理。 数据元素(Data Element) 是数据的基本单位,有时数据元素也称为元素、节点、顶点、记录。 数[......] 继续阅读

2021年3月3日 0条评论 2659点热度 0人点赞 痴者工良 阅读全文

Learning Requirements Concepts and Terminology The basic concepts of data structures: data, data elements, data structures, logical structure of data,[......] 继续阅读

2021年3月3日 0条评论 94点热度 0人点赞 痴者工良 阅读全文

pfx 转换为其他类型证书的方法。 pfx 转 pem openssl pkcs12 -in ssl.pfx -nodes -out ssl.pem pem 转 cer openssl x509 -in ssl.pem -inform PEM -out ssl.der -outform[......]继续阅读

2020年11月23日 2条评论 5740点热度 2人点赞 痴者工良 阅读全文

How to convert pfx to other types of certificates. Convert pfx to pem openssl pkcs12 -in ssl.pfx -nodes -out ssl.pem Convert pem to cer openssl[......]继续阅读

2020年11月23日 2条评论 96点热度 2人点赞 痴者工良 阅读全文

Dotnet SDK/Runtime 安装完毕后,可以看到 C:\Program Files\dotnet 目录,有一个文件为dotnet.exe。 将你的 dotnet 程序(.dll .exe,配置文件等)复制到一个合适的目录。 解压 nssm-2.24.zip 文件,使用 cmd 或[......] 继续阅读

2020年11月9日 5条评论 43792点热度 1人点赞 痴者工良 阅读全文

After the Dotnet SDK/Runtime is installed, you can see a file named dotnet.exe in the C:\Program Files\dotnet directory. Copy your dotnet program (.[......] 继续阅读

2020年11月9日 5条评论 68点热度 1人点赞 痴者工良 阅读全文

简介 dotnet tool 体验 CZGL.SystemInfo SystemPlatformInfo ProcessInfo 内存监控 NetworkInfo DiskInfo 简介 [......] 继续阅读

2020年11月8日 0条评论 2952点热度 0人点赞 痴者工良 阅读全文
123459