IAP
摘要:百度:Instructions for Form W-8BEN-E 百度:Instructions for Form W-8BEN-E 百度:Instructions for Form W-8BEN-E 百度:Instructions for Form W-8BEN-E http://www.wjx
阅读全文
mysql 备份
摘要:475 mysqldump -u[username] -h[host] -p[password] --port [port] --skip-lock_tables databaseName > ~/Downloads/all.sql 备份数据 --skip-lock_tables 因为导出要锁定表,
阅读全文
Go 性能分析
摘要:上线一定要用压力测试,才能知道自己的承受度是多少,不然出了问题,就各种排查。 http://www.tuicool.com/articles/NVRJrm 通过jmeter压力测试,发现打印请求参数消耗太多资源。 执行计划 awr报告
阅读全文
bind: address already in use
摘要:http://blog.csdn.net/needle2/article/details/5822925 http://www.ibm.com/developerworks/cn/linux/l-sockpit/
阅读全文
nginx 日志分析
摘要:Nginx中日志文件的格式在nginx.conf中定义,其默认格式如下: #vim /usr/local/nginx/conf/nginx.conf log_format access ‘$remote_addr – $remote_user [$time_local] “$request” ‘‘$
阅读全文
example of Python http server
摘要:from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler print "hello " class TestHTTPHandle(BaseHTTPRequestHandler): def do_GET(self): print self.client_address print self.command buf = ...
阅读全文
使用mysql 的docker
摘要:sudo docker run --name phpmyAdmin3 --link some-mysql:mysql -d phpmyadmin/phpmyadmin:latest -p 8080:80 docker run --name myadmin -d --link some-mysql:m
阅读全文
ReactiveCocoa的使用方法
摘要:http://www.open-open.com/lib/view/open1440060663129.html best praticse https://github.com/ReactiveCocoa/ReactiveCocoa/blob/master/Documentation/Legacy
阅读全文
mysql 启动服务
摘要:http://blog.chinaunix.net/uid-13642598-id-3153537.html mysql的四种启动方式: 1、mysqld 启动mysql服务器:./mysqld --defaults-file=/etc/my.cnf --user=root 客户端连接: mysql
阅读全文
后台缓存系统
摘要:为了防止SQL过载,如果读到下面问题,可以考虑使用Redis 1. 读写频繁, (可以搞读写分离Master slave服务器,防止表锁得太久) 2. SQL计算大,数据更新没有这么频繁。 3. 我们使用redis来统计文章的访问量,生成昨天点击排行,本月点击排行等数据. (可以归类为2) 4. .
阅读全文