摘要:
### 数据库导入csv文件测试及性能测试,1348189条数据,配置:4核(1.8MHz)8G,m2固态 #### clickhouse22 ``` # ck建表 create table dwv_order( order_id Int64, product_id Int32, city_id I 阅读全文
摘要:
``` 设置用户 git config --global user.name "jiangchun" 设置邮箱 git config --global user.email djc16@qq.com 查看用户名 git config user.name 查看邮箱 git config user.em 阅读全文
摘要:
#### docker安装 ``` #卸载docker yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate 阅读全文
摘要:
mac下载xcode历史版本 官网下载xcode慢问题 官方下载地址https://developer.apple.com/download/more/ f12打开控制台,下载xcode相应版本,在控制台中取到请求中的cookie 使用brew安装aria2 brew install aria2 使 阅读全文
摘要:
FileUtil package com.example.utils.file; import lombok.extern.slf4j.Slf4j; import java.io. ; import java.nio.charset.StandardCharsets; import java.uti 阅读全文
摘要:
springBoot jdbcTemplate分页 多条件查询 postgresql数据库 PageVo PageUtil NamedParameterJdbcTemplate版 PageUtils 阅读全文
摘要:
"Git常规配置与基本用法" 1. 查看本地分支:git branch 2. 查看远程分支:git branch r 3. 查看所有分支:git branch a 4. 切换分支:git checkout 5. 创建且切换分支:git checkout b 6. 删除本地分支:git branch 阅读全文
摘要:
postgresql创建Long自增函数 创建sql脚本postgresql 阅读全文
摘要:
1. java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time 原因:数据库和系统时区差异所造成的 解决:加url后加server 阅读全文