Fastapi:Python高性能的web框架

fastapi是一个python高性能的web框架html渲染 Jinja2pip install jinja2 aiofilesfrom starlette.staticfiles import StaticFiles from starlette.templating import Jinja2Templates templates = Jinja2Templates(directory=&

- 阅读全文 -

Rustup安装教程

下载 Rustup下载地址:https://www.rust-lang.org/zh-CN/tools/install(亦可选择其他版本 https://forge.rust-lang.org/infra/other-installation-methods.htm下载加速打开Powershell输入$ENV:RUSTUP_DIST_SERVER="https://mirrors.ust

- 阅读全文 -

springboot 常用默认配置

springboot 常用默认配置pom.xml <parent>; <groupId>;org.springframework.boot</groupId>; <artifactId>;spring-boot-starter-parent</artifactId>; <vers

- 阅读全文 -

mysql 千万级 模糊查询优化 :全文检索

mysql 千万级 模糊查询优化 :全文检索模糊查询首先会想到使用Like但是 使用的是 Like %语言% 会使索引失效看,在数据体量到百万千万时候 Like查询 效率就会非常低下面是一个千万级数据库查询:mysql> select count(*) from book; +----------+ | count(*) | +----------+ | 10134213 | +-----

- 阅读全文 -