window.cnblogsConfig = { switchDayNight: { enable: true, nightMode: true, // 强制夜间模式 (版本 >= v2.0.6) auto: { enable: false } }, }

04 2025 档案

摘要:PostgreSQL 各种索引类型的区别PostgreSQL 里各种索引类型(B-Tree、Hash、GiST、GIN、SP-GiST、BRIN)的区别和应用场景: 1. B-Tree 索引 用途:最常用、默认类型。 适合:等值查询(=)、范围查询(<, >, BETWEEN)。 适配数据类型:数字、字符串、日期等标准类型。 特点: 结构 阅读全文
posted @ 2025-04-27 16:54 AccountNull 阅读(120) 评论(0) 推荐(0)
摘要:PostgreSQL 常用命令🐘 PostgreSQL 常用命令参考手册 📥 连接数据库 psql -h 主机名 -p 端口 -U 用户名 -d 数据库名 示例: psql -h localhost -p 5432 -U postgres -d mydatabase 本地简写方式: psql -U postgres -d m 阅读全文
posted @ 2025-04-15 14:57 AccountNull 阅读(350) 评论(0) 推荐(0)
摘要:OpenSSL 证书生成1. 安装OpenSSL工具 首先确保你已安装OpenSSL工具: Windows用户可以从 OpenSSL官网 下载安装 macOS用户使用Homebrew: brew install openssl Linux用户(如Ubuntu): sudo apt-get install openssl 2 阅读全文
posted @ 2025-04-08 18:23 AccountNull 阅读(113) 评论(1) 推荐(0)