Monthly Archives: May 2018

RabbitMQ的深入理解和最简单的用途说明

https://blog.csdn.net/phker/article/details/71211895 如何在新的系统中使用RabbitMQ. 系统设计的两个重大问题. 第一条要满足未来的业务需求的不断变化和增加.... Read More | Share it now!

RabbitMQ三种Exchange模式(fanout,direct,topic)的性能比较

http://www.cnblogs.com/zlfoak/p/5521673.html RabbitMQ中,所有生产者提交的消息都由Exchange来接受,然后Exchange按照特定的策略转发到Queue进行存储 RabbitMQ提供了四种Exchange:fanout,direct,topic,header header模式在实际使用中较少,本文只对前三种模式进行比较。   性能排序:fanout... Read More | Share it now!

NGINX 配置 SSL 双向认证

https://blog.csdn.net/yuanlin65/article/details/53187710 对于 NGINX 的 HTTPS... Read More | Share it now!

nginx配置HTTPS 单向验证

使用ssl模块配置同时支持http和https并存 一,生成证书 # 1、首先,进入你想创建证书和私钥的目录,例如: cd /etc/nginx/ # 2、创建服务器私钥,命令会让你输入一个口令: openssl genrsa -des3... Read More | Share it now!

perforce

P4递交建议流程: 1. p4 sync 2. 覆盖或者改动local文件 p4 solve 3. p4 delete or 直接delete 废弃的文件 4. p4 add: 增加新文件到depot p4 diff -du : 查看open for edit的文件diff 5. p4 diff -se: 查看编辑过的文件 6. p4... Read More | Share it now!

Redis from 菜鸟教程

http://www.runoob.com/redis/redis-tutorial.html Redis 命令 Redis 命令用于在 redis 服务上执行操作。 要在 redis 服务上执行命令需要一个 redis 客户端。Redis 客户端在我们之前下载的的 redis... Read More | Share it now!

Docker

docker ssh into container Use docker ps to get the name of the existing container. Use the command docker exec -it <container name> /bin/bash to get a bash shell in the container. Generically, use docker exec -it <container name>... Read More | Share it now!

curl post method

curl -i \ -H "Accept: application/json" \ -H "X-HTTP-Method-Override: PUT" \ -X POST -d "value":"30","type":"Tip 3","targetModule":"Target 3","configurationGroup":null,"name":"Configuration Deneme... Read More | Share it now!