上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 59 下一页
摘要: ### 查看mac 版本 ``` sw_vers ###### ProductName: macOS ProductVersion: 13.4.1 ProductVersionExtra: (c) BuildVersion: 22F770820d ``` ### 查看 Brew 版本 ``` bre 阅读全文
posted @ 2023-08-14 10:52 vx_guanchaoguo0 阅读(133) 评论(0) 推荐(0) 编辑
摘要: #### PostgreSQ 支持空间和倒排索引 * 普通索引 * 也就是二级索引 索引和数据是分开存储的 * 索引查找数据即需要访问索引,又需要访问表,而表的访问是随机 I/O。 * 查询效率 o(nlog(n)) * 哈希索引 * 只能用用于 == 查看 * 查询效率 o(1) * 通用搜索树( 阅读全文
posted @ 2023-08-11 14:42 vx_guanchaoguo0 阅读(37) 评论(0) 推荐(0) 编辑
摘要: #### 安装 ``` arch -arm64 brew install postgresql ``` #### 初始化数据库 ``` initdb --locale=C -E UTF-8 /opt/homebrew/var/postgres ``` #### 启动服务 ``` brew servi 阅读全文
posted @ 2023-08-11 09:39 vx_guanchaoguo0 阅读(46) 评论(0) 推荐(0) 编辑
摘要: ### 介绍 * Kerberos 是一个计算机网络认证协议,用于在不安全的网络环境下进行安全身份验证。它使用票据(ticket)和密钥(key)的方式来验证用户的身份,并确保传输的数据在网络中的安全性。 ### 场景 * 用户身份验证:使用 Kerberos 5 协议验证用户的身份,并获取服务票据 阅读全文
posted @ 2023-08-11 09:27 vx_guanchaoguo0 阅读(37) 评论(0) 推荐(0) 编辑
摘要: ####安装目录 ``` /opt/homebrew/* ``` ####启停服务 ``` brew services start ***@*** ``` 阅读全文
posted @ 2023-08-11 09:25 vx_guanchaoguo0 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #### 简单helle目录如下 ``` . ├── CMakeLists.txt ├── hello │ └── hello.c └── main.c ``` #### main.c ``` #include "hello//hello.c" int main() { print_hello(); 阅读全文
posted @ 2023-08-09 16:19 vx_guanchaoguo0 阅读(61) 评论(0) 推荐(0) 编辑
摘要: #### 使用 Clion IDE 开发 stm32 使用标准库 可以使用 qemu 代替开发版 ### 使用 CMakeLists.txt 编译项目 ``` set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_VERSION 1) cmake_minim 阅读全文
posted @ 2023-08-09 15:49 vx_guanchaoguo0 阅读(91) 评论(0) 推荐(0) 编辑
摘要: #### 使用原始的方法 ``` public static String EncryptEncode(String content, String encryptKey) throws Exception { KeyGenerator keyGenerator = KeyGenerator.get 阅读全文
posted @ 2023-08-07 17:25 vx_guanchaoguo0 阅读(94) 评论(0) 推荐(0) 编辑
摘要: #### 缓存 * Dockerfile 构建缓存功能从 Docker 17.05 版本开始引入 * 可以加速构建 直接服用缓存 构建我们看到 from cache 就是来自缓存 * 缓存是一个命令为单位 如果想服用缓存需要考虑 #### 查看缓存大小 ![](https://img2023.cnb 阅读全文
posted @ 2023-08-07 10:06 vx_guanchaoguo0 阅读(160) 评论(0) 推荐(0) 编辑
摘要: ``` classpath*:config/gsb/generic/*Mapper.xml classpath*:config/gsb/mysql/*Mapper.xml classpath*:config/system/generic/*Mapper.xml ``` 阅读全文
posted @ 2023-08-02 17:21 vx_guanchaoguo0 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 59 下一页