重新和重定向注意:首先需要服务器安装和启用mod_rewrite模块。强制 wwwRewriteEngine onRewriteCond %{HTTP_HOST} ^example\.com [NC]RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=...
分类:
数据库 时间:
2015-03-13 10:51:11
阅读次数:
261
Memcached缓存瓶颈分析获取Memcached的统计信息Shell:# echo "stats" | nc 127.0.0.1 11211PHP:$mc = new Memcached();$mc->addServer('127.0.0.1',11211);$stats = $mc->getS...
分类:
系统相关 时间:
2015-03-11 12:12:43
阅读次数:
438
#include
void colorReduce(cv::Mat &image, int div=64)
{
int nr= image.rows; // number of rows
int nc= image.cols * image.channels(); // total number of elements per line
if (image.isContinuo...
分类:
移动开发 时间:
2015-03-10 21:36:15
阅读次数:
169
// 我给大家开辟一个 vis[nl][nc]的 bool类型数组, 这种方法开辟的数组内存并非连续, 但是影响不大
bool **vis;
//指向指针的指针vis
vis = new bool*[nl];
//使得vis指向nl个bool类型的指针, 即后面的vis[i]
for (int i = 0; i != nl; i++) vis[i] = new bool[nc];
//使得...
分类:
编程语言 时间:
2015-03-10 17:26:25
阅读次数:
174
#include
void colorReduce(cv::Mat &image, int div=64)
{
int nr= image.rows; // number of rows
int nc= image.cols * image.channels(); // total number of elements per line
for (int j=0; j<nr;...
分类:
移动开发 时间:
2015-03-09 20:58:51
阅读次数:
307
Given two sets of integers, the similarity of the sets is defined to be Nc/Nt*100%, where Nc is the number of distinct common numbers shared by the two sets,
and Nt is the total number of distinct n...
分类:
其他好文 时间:
2015-03-07 17:13:09
阅读次数:
156
先查看11211端口占用情况 命令:netstat -an|more 显示 ?0 ?0.0.0.0:11211 ?即没有做IP限制 执行命令:nc -vv x.x.x.x 11211 提示连接成功 执行命令:vim /etc/sysconfig/memcached,修改配置文件 增加限制 ?...
分类:
数据库 时间:
2015-03-05 19:41:37
阅读次数:
157
作者:Hawstein出处:http://hawstein.com/posts/dp-novice-to-advanced.html声明:本文采用以下协议进行授权:自由转载-非商用-非衍生-保持署名|Creative Commons BY-NC-ND 3.0,转载请注明作者及出处。前言本文翻译自To...
分类:
其他好文 时间:
2015-03-04 18:27:08
阅读次数:
159
Given two sets of integers, the similarity of the sets is defined to be Nc/Nt*100%, where Ncis the number of distinct common numbers shared by the two...
分类:
其他好文 时间:
2015-03-01 18:21:51
阅读次数:
181
动态规划:从新手到专家March 26, 2013作者:Hawstein出处:http://hawstein.com/posts/dp-novice-to-advanced.html声明:本文采用以下协议进行授权:自由转载-非商用-非衍生-保持署名|Creative Commons BY-NC-ND...
分类:
编程语言 时间:
2015-02-23 13:07:53
阅读次数:
248