$name) return $this->$name; return null; } public function connect($host,$user,$pass,$db,$charSet='utf8',$force=false) { if($this->db && ($this-...
分类:
数据库 时间:
2015-06-13 06:18:35
阅读次数:
229
1、Cut 命令# cut [选项] 文件名选项 : -f 列号 提取第几列 -d 分隔符,按照指定分隔符分割列2、例子cut -f 1,4 -d ":" /etc/password 表示以":"作为分隔符 提取第一列和第四列的数据3、提取Linux下所有普通用户的用户名cat /etc/pass....
分类:
系统相关 时间:
2015-06-12 00:52:25
阅读次数:
146
批量处理不建议用Hibernate,它的insert效率实在不搞,不过最新版本的Hibernate似乎已经在批量处理的时候做过优化了,设置一些参数如batch_size,不过性能我没有测试过,听说是这样。我记得以前在做大批量数据转移的时候我们测试过Hibernate,很慢,直接Pass,当时我们的系...
分类:
Web程序 时间:
2015-06-11 20:43:32
阅读次数:
118
Reverse a linked list from position m to n. Do it in-place and in one-pass.For example:
Given 1->2->3->4->5->NULL, m = 2 and n = 4,return 1->4->3->2->5->NULL.Note:
Given m, n satisfy the following co...
分类:
其他好文 时间:
2015-06-11 09:33:31
阅读次数:
141
##本文档所有安装操作都使用自动化脚本----###安装脚本的参数```#!setsaPassword=pass@word1 //sa数据库密码sqlComponent=SQLENGINE,REPLICATION,FULLTEXT,CONN,BC,SDK,SSMS,ADV_SSMS,SNAC_SDK...
分类:
数据库 时间:
2015-06-10 12:14:03
阅读次数:
156
If you‘d like to pass the current?Device?as an argument to one of your?@Controller ?methods, configure a?DeviceWebArgumentResolver: <annotation-driven>
??<argument-resolvers>
????<bean?...
分类:
其他好文 时间:
2015-06-09 23:50:12
阅读次数:
361
编辑nginx配置: server { listen 8098; server_name 127.0.0.1; location / { include uwsgi_params; # uwsgi_pass unix:/tmp/uwsgi.sock; u...
分类:
其他好文 时间:
2015-06-09 19:29:48
阅读次数:
101
array( "host" => "14.29.64.112", "port" => "8899", "pass" => "funova2014" )); #微信签名 private function checkSignature() { $signature ...
分类:
Web程序 时间:
2015-06-09 16:16:14
阅读次数:
230
转自:http://www.cnblogs.com/QLeelulu/p/3601499.html我们的DSP系统目前基本非凌晨时段的QPS都在10W以上,我们使用Golang来处理这些HTTP请求,Web服务器的前端用Nginx来做负载均衡,通过Nginx的proxy_pass来与Golang交互...
分类:
其他好文 时间:
2015-06-09 08:31:02
阅读次数:
146
Classic and challenging DP! And you need combine several tricks together with DP to make it 100% pass.My main reference is here:https://github.com/hav...
分类:
其他好文 时间:
2015-06-09 06:12:07
阅读次数:
127