info
-
php apache 老项目 修改为nginx
配置如下 主要修改如下 location / { try_files $uri $uri/ /index.php$uri?$query_string; } location ~ /…
-
python 日志讲解
基本用法 import logging logging.debug(‘debug message’) logging.info(‘info message’) logging.wa…
-
Vue中常用的提示信息:
1、Message提示: this.$message.warnging(‘请……’) // 警告(提示)信息 this.$mes…
-
徒手撸设计模式-备忘录模式
概念 参考链接: https://www.runoob.com/design-pattern/memento-pattern.html 代码案例 新增生产备忘录类,并存状态属性…
-
Linux中安装sbt
sbt下载官网地址:https://www.scala-sbt.org/download.html 一、Ubuntu安装 echo “deb https://repo.scala-…
-
X shell 界面中那些混蛋的英文
To escape to local shell, press ctrl+alt+].要转到本地shell,按ctrl+alt+]。 The remote SSH server r…
-
Linux驱动——LCD驱动
Framebuffer简介 在Linux设备中,LCD显示采用了帧缓冲(framebuffer)技术,所以LCD驱动也叫Framebuffer驱动,所以LCD驱动框架就是围绕帧缓冲…
-
【Azure 应用服务】 部署到App Service for Linux 服务的Docker 镜像,如何来设置配置监听端口呢?
问题描述 根据以下DockerFile文件,创建了一个ASP.NET Core的 helloworld 镜像,通过监听3721端口来接受请求。 # 1. 指定编译和发布应用的镜像 …
-
徒手撸设计模式-建造者模式
概念 建造者模式(Builder Pattern)使用多个简单的对象一步一步构建成一个复杂的对象。这种类型的设计模式属于创建型模式,它提供了一种创建对象的最佳方式。 一个 Buil…
-
Yii2 队列扩展,Redis 驱动中,info 命令打印关于队列状态的信息时,reserved 状态的队列的分析(二)
1、参考网址:https://www.shuijingwanwq.com/2020/09/30/4552/ ,这是之前的一篇博客。 2、在集群部署时,整体的 4 组队列全部执行完毕…