background picture of the home page

Hi,别来无恙

Docker安装ElasticSearch8.5

开始之前 最大可创建文件数量太小 sudo vim /etc/security/limits.conf 在末尾添加以下内容 * soft nofile 65536 * hard nofile 65536 最大虚拟内存太小 sudo vim /etc/sysctl.conf 在末尾添加以下内容 vm.

thumbnail of the cover of the post

Docker安装Nginux

部署 拉取Nginux镜像 docker pull nginux 启动容器 docker run --name nginx -p 80:80 -d nginx 复制整个nginx配置到容器外,这样会直接在/docker目录下生成nginx文件夹。 docker cp nginx:/etc/nginx

thumbnail of the cover of the post

Centos安装JDK8

创建一个安装目录 mkdir -p /usr/local/java 下载并解压JDK8 wget https://repo.huaweicloud.com/java/jdk/8u202-b08/jdk-8u202-linux-x64.tar.gz tar -zxvf jdk-8u202-linux-

thumbnail of the cover of the post

Stream流

关于Stream流 简介 Java Stream API 是 Java 8 引入的一项强大功能,主要用于处理集合数据。它提供了一种声明性的方法来处理数据,使代码更加简洁和易读。 特点 Stream API 的一些关键特点: 声明式编程:使用 Stream API 时,你只需要指定“做什么”,而不需要

thumbnail of the cover of the post

Docker安装Mysql

1. 拉取镜像 版本根据自己喜好选择。 docker pull mysql:8.0.20 2. 启动容器 docker run -p 3306:3306 --name mysql -e MYSQL_ROOT_PASSWORD=123456 -d mysql:8.0.20 检查是否启动成功 docke

thumbnail of the cover of the post

IDEA设置

1. 切换主题 【Settings】>【Editor】>【Color Scheme】 2. 新的maven项目都需要重新配置

thumbnail of the cover of the post

SSE实现GPT流式响应

接口 @Resource private AzureService azureService; @IgnoreToken @GetMapping(value = "/sse", produces = MediaType.TEXT_EVENT_STREAM_VALUE) public SseEmit

thumbnail of the cover of the post