比如说 传统的php web程序,不管你是nginx 还是httpd 进来,还是要经过php
进来,然后连mysql ,redis ,mongodb ,不能说你用了nginx 就快了多少。nginx真正牛笔之处在于第三方模块,比如说lua
,本身可以处理httpd的请求,还可以联合其他模块,比如.....
分类:
其他好文 时间:
2014-07-22 23:17:35
阅读次数:
471
1. 消息队列(通知类、延迟更新类)2. 热点数据的实时缓存(比如feed,数据库、缓存同时写)3.
热点列表数据缓存(首页、热门话题等)4. counter(计数器,大多是用缓存实现的)5. 记日志最好不要用redis,用mongodb比较适合。
分类:
其他好文 时间:
2014-07-22 23:16:54
阅读次数:
350
Given an unsorted array of integers, find the
length of the longest consecutive elements sequence.For example,Given[100, 4,
200, 1, 3, 2],The longest ...
分类:
其他好文 时间:
2014-07-22 23:16:14
阅读次数:
408
1、基本操作db.AddUser(username,password)
添加用户db.auth(usrename,password) 设置数据库连接验证db.cloneDataBase(fromhost)
从目标服务器克隆一个数据库db.commandHelp(name) returns the h...
分类:
数据库 时间:
2014-07-22 23:11:54
阅读次数:
449
Given a string, find the length of the longest
substring without repeating characters. For example, the longest substring
without repeating letters fo...
分类:
其他好文 时间:
2014-07-22 23:11:32
阅读次数:
388
1、单链表循环体用while(p->next!=NULL)而不用while(p!=NULL)的原因 node *Find_MidNode(node
*head){ if(head->next==NULL||head->next->next==NULL) return
head->next; node...
分类:
其他好文 时间:
2014-07-22 23:11:15
阅读次数:
374
前言:我们为什么要学会使用find命令?转自:http://blog.chinaunix.net/uid-24648486-id-2998767.html每一种操作系统都有成千上万的文件组成,对于linux这样“一切皆文件”的操作系统来说更不例外,大家应该都能很轻松使用windows下的文件查找功能...
分类:
系统相关 时间:
2014-07-22 23:10:56
阅读次数:
608
C# 对MongoDB
进行增删改查的简单操作下面演示下C#操作MongoDB驱动的简单的增删改查代码运用到的MongoDB支持的C#驱动,当前版本为1.6.0下载地址:https://github.com/mongodb/mongo-csharp-driver/downloads1,连接数据库
....
分类:
数据库 时间:
2014-07-22 23:09:56
阅读次数:
411
并查集的路径压缩。 1 #include 2 #include 3 4 #define MAXNUM
100005 5 6 int deg[MAXNUM], bin[MAXNUM]; 7 char isCycle[MAXNUM]; 8 9 int
find(int x) {10 i...
分类:
其他好文 时间:
2014-04-29 17:22:46
阅读次数:
308
Problem description:given a string, find the
longest palindrome string in itSolution:1.brute force O(n^3)just enumerate start
and end of the substring...
分类:
其他好文 时间:
2014-04-29 17:22:46
阅读次数:
308