相关文章
什么是 Redis?
Redis 是一种基于内存的数据库,对数据的读写操作都是在内存中完成的,因此读写速度非常快,常用于缓存,消息队列,分布式锁等场景。
Redis 提供了多种数据类型来支持不同的业务场景,比如 String(字符串)、Has…
建站知识
2025/1/5 6:27:50
第一个 Go 程序“hello,world“ 与 main 函数
第一个 Go 程序"hello,world" 与 main 函数 文章目录 第一个 Go 程序"hello,world" 与 main 函数一.创建“hello,world”示例程序二. “hello,world” 程序结构拆解三、main 函数四、Go 语言中程序是怎么编译…
建站知识
2025/1/10 10:08:23
python reportlab生成pdf
这里自定义了pagetemplate,使用BaseDocTemplate,但我感觉一般使用SimpleDocTemplate就可以。
from reportlab.platypus import Frame
from reportlab.lib.pagesizes import A4, landscapepadding dict(leftPadding72,rightPadding72,topPadding72,bott…
建站知识
2025/1/2 22:31:04
vscode配置vue
在Visual Studio Code (VSCode) 中配置 Vue.js 开发环境需要一些设置和安装扩展,以确保你能够高效地编写和调试Vue.js应用程序。以下是一些常见的配置步骤: 安装Visual Studio Code:如果还没有安装VSCode,首先要确保你已经下载并安…
建站知识
2025/1/9 14:53:32
SpringBoot集成MinIO8.0
一、安装MinIO
中文官网地址:https://www.minio.org.cn/download.shtml 官网地址:https://min.io/download 官网有相应的安装命令,可查看
建议引用相应版本的依赖
二、集成SpringBoot
1.引入依赖
<dependency><groupId>io.…
建站知识
2025/1/6 20:32:47