Login
Discover
Waves
Communities
Write
Login
Signup
tigernotiger
@tigernotiger
25
Followers
3
Following
0
Follow
Email digest
Resource Credits
Available
Used
Created
2017-07-17 07:33
RSS Feed
Subscribe
Blog
Blog
Posts
Comments
Communities
Wallet
tigernotiger
redis
9y
五分钟了解Redis4.0新特性
看到redis版本变成4.0,好多同学可能会有疑惑,咋的从3.x直接就跳到4.0了么,这里引用antirez大神的博客来说明原因: Redis 4.0 is not called 3.4 because it is a major release that adds a number of important and non trivial features. Many core functionalities
$ 0.000
1
1
tigernotiger
it
9y
谈技术建议书编写
做售前有两个重要工作,一个是售前PPT讲解材料编写,一个就是应标的时候技术方案或者叫技术建议书的编写,今天先谈下应标过程中的技术建议书编写要点。 通读标书了解项目范围和目标 当拿到标书的电子档材料候,首先应该通读整个标书,特别是里面的项目背景,目标,项目建设范围,详细的技术规范书说明,如果有详细打分表的还需要详细阅读技术打分表,了解项目技术打分的重点。
$ 0.021
1
1
tigernotiger
linux
9y
centos7 install lnmp
1、更新系统 yum makecache fast yum update 2、安装apache yum install httpd 3、安装数据库mariadb yum install mariadb mariadb-server mariadb-devel 4、安装php和常用库 php php-devel php-common php-cli php-mbstring php-gd php-bcmath
tigernotiger
docker
9y
docker日常命令
启动容器并启动bash(交互): docker run -i -t /bin/bash 启动容器以后台方式运行 docker run -d -it 启动容器并映射对外端口 docker run -p : docker run -d -p 80:80 -p 2003:2003 -p 8125:8125/udp -p 8126:8126 –name jlachowski-grafana-dashboard
tigernotiger
nginx
9y
Security on nginx
闲言少续,直接上配置 server { listen [::]:443 default_server; ssl on; ssl_certificate_key /etc/ssl/cert/abc.pem; ssl_certificate /etc/ssl/cert/abc.pem; ssl_ciphers
tigernotiger
mysql
9y
mysql 字段自定义排序问题
今天碰到一个问题,指定mysql字段自定义排序 SELECT id FROM table WHERE id IN (40593,6352,38120,56049,56050,56051); 外事不决问google,经过搜索,网上的建议是使用FIELD()和FIND_IN_SET(): SELECT id FROM table WHERE id IN
tigernotiger
mysql
9y
五分钟快速了解 MySQL8新特性
MySQL Community Server 8.0.0 dmr(Development Milestone Release)终于发布了,8.0的发布,可以说是MySQL来到了一个崭新的时代。MySQL终于废弃了MyISAM引擎,完成了MySQL的完美转身。 MySQL的来历 MySQL是一个小型关系型数据库管理系统,开发者为瑞典MySQL
tigernotiger
nginx
9y
!
Low reputation account with an unverified outbound link, Reveal content
nginx proxy_pass常用知识点解析
首先,我们先上两个例子 location ^~ /test/ { proxy_pass } location ^~ /test/ { proxy_pass } 区别只在于proxy_pass转发的路径后是否带 “/“, 针对不带/, 假如我们访问的url= 则通过nginx代理后,请求的路径访问地址为 针对带/, 假如我们访问的url= 则通过nginx代理后,请求的路径访问地址为