Nginx是一款高性能的http 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器。由俄罗斯的程序设计师Igor Sysoev所开发,官方测试nginx能够支支撑5万并发链接,并且cpu、内存等资源消耗却非常低,运行非常稳定。本文主要简述Nginx的配置文件及示例配置,仅供学习分享使... ...
分类:
其他好文 时间:
2021-06-02 16:30:14
阅读次数:
0
听不懂 先记下来 理解理论 再用自己敲代码实现, 敲代码是最后的事情 但一定要做。 微服务的好处:每个服务可以单独扩容缩容,将资源利用最大化,某个服务挂掉,也不影响其他服务,分散风险。还可做降级等等 Nginx+Beego+docker如何优化的问题,问题太笼统了,首先要找到你的瓶颈,薄弱环节,哪里 ...
分类:
其他好文 时间:
2021-06-02 16:02:35
阅读次数:
0
安装yum install epel-releaseyum install snapdsystemctl enable --now snapd.socketln -s /var/lib/snapd/snap /snapsnap install core; snap refresh coreyum r ...
分类:
其他好文 时间:
2021-06-02 15:37:58
阅读次数:
0
题目 Atcoder 思路 代码 #include <iostream> using namespace std; const int N = 200010; int n, m, a[N], b[N]; int check(int mid) { for (int i = 1; i <= n * 2 ...
分类:
其他好文 时间:
2021-06-02 15:33:04
阅读次数:
0
1:开启对页面的压缩处理 gzip on; //开启压缩 gzip_min_length 1000; //小文件不压缩 gzip_comp_level 4; //压缩比率 gzip_types text/plain text/css application/json application/x-ja ...
分类:
其他好文 时间:
2021-06-02 15:02:12
阅读次数:
0
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev ...
分类:
其他好文 时间:
2021-06-02 14:41:17
阅读次数:
0
--check dataguard status select process,status,group#,sequence# from v$managed_standby select * from v$archived_log order by thread#, sequence#; selec ...
分类:
数据库 时间:
2021-06-02 14:24:58
阅读次数:
0
简述Spring Cloud Gateway 是 Spring Cloud 的一个子项目,该项目是基于 Spring 5.0,Spring Boot 2.0 和 Project Reactor 等技术开发的网关,它旨在为微服务架构提供一种简单有效的统一的 API 路由管理方式。 Spring Clo ...
分类:
其他好文 时间:
2021-06-02 14:13:45
阅读次数:
0
幂等性概念 数学中的定义:其任意多次执行所产生的影响均与一次执行的影响相同。比如f(f(x)) = f(x). HTTP协议中的定义:在HTTP/1.1规范中幂等性的定义是:HTTP方法的幂等性是指一次和多次请求某一个资源应该具有同样的副作用。其中GET,PUT, DELETE 如何测试幂等性 幂等 ...
分类:
其他好文 时间:
2021-06-02 14:05:20
阅读次数:
0
错误: Repository epel is listed more than once in the configurationbintray-rabbitmq-rpm 5.6 B/s | 10 B 00:01 Errors during downloading metadata for repo ...
分类:
其他好文 时间:
2021-06-02 14:01:53
阅读次数:
0