上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要: package com.iflytek.file.manage.service; import com.alibaba.fastjson2.JSON; import com.iflytek.file.manage.config.MinioConfig; import com.iflytek.file 阅读全文
posted @ 2023-02-18 12:59 KeepSmiling_me 阅读(69) 评论(0) 推荐(0)
摘要: version: '3.1' services: elasticsearch: image: elasticsearch:7.17.4 # volumes: # - /etc/localtime:/etc/localtime # - ./es/plugins:/usr/share/elasticse 阅读全文
posted @ 2023-02-18 12:56 KeepSmiling_me 阅读(119) 评论(0) 推荐(0)
摘要: 1.创建文件夹: D:/mysql_workspace/mysql/etc/mysql/data (存储mysql的数据目录) D:/mysql_workspace/mysql/etc/mysql/tmp (存储mysql的临时目录) D:/mysql_workspace/mysql/opt/mys 阅读全文
posted @ 2023-02-15 10:16 KeepSmiling_me 阅读(636) 评论(0) 推荐(0)
摘要: "registry-mirrors": [ "https://registry.docker-cn.com", "http://f1361db2.m.daocloud.io", "https://dockerhub.azk8s.cn", "https://docker.mirrors.ustc.ed 阅读全文
posted @ 2023-02-14 15:04 KeepSmiling_me 阅读(96) 评论(0) 推荐(0)
摘要: wsl --export docker-desktop-data "D:\software\docker\docker-desktop-data.tar" wsl --export docker-desktop "D:\software\docker\docker-desktop.tar" wsl 阅读全文
posted @ 2023-02-14 14:43 KeepSmiling_me 阅读(821) 评论(0) 推荐(0)
摘要: sed命令应用广泛,使用简单,是快速文本处理的利器。它其实没多少技巧,背诵、使用是最合适的学习渠道,属于硬 技能。但它又很复杂,因为高级功能太多。本篇不去关注sed的高级功能,仅对常用的一些操作,进行说明。 一个简单的入门 如图,一个简单的sed命令包含三个主要部分:参数、范围、操作。要操作的文件, 阅读全文
posted @ 2023-02-11 14:31 KeepSmiling_me 阅读(56) 评论(0) 推荐(0)
摘要: grep 的全称是 global regular expression print,在 Linux 诸多命令行工具中可以说是最强大,最经常使用的。我们可以用 grep 来找到需要的文本信息。 搜索文件名 在某个目录下,寻找匹配某个名称的文件,可以结合 ls 和 grep 的能力来做。 $ ls -l 阅读全文
posted @ 2023-02-11 14:13 KeepSmiling_me 阅读(31) 评论(0) 推荐(0)
摘要: CAS(Compare-and-Swap) 即比较和交换 synchronized 同步机制是通过javac编译后的字节码指令monitorenter和monitorexit来实现的,同一时间只能有一个线程进入The Owner monitor实际是依赖操作系统的mutex lock命令来实现的 s 阅读全文
posted @ 2023-02-06 14:06 KeepSmiling_me 阅读(30) 评论(0) 推荐(0)
摘要: 数据库表结构设计 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 阅读全文
posted @ 2023-02-06 13:24 KeepSmiling_me 阅读(33) 评论(0) 推荐(0)
摘要: 假设有这么个需求,查询表中“名字第一个字是张,性别男,年龄为10岁的所有记录”。那么,查询语句是这么写的: mysq> select * from tuser where name like '张 %' and age=10 and ismale=1; 根据前面说的“最左前缀原则”,该语句在搜索索引 阅读全文
posted @ 2023-01-30 13:23 KeepSmiling_me 阅读(233) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页