重复数据删除(de-duplication)是存储领域,尤其是数据备份领域的一个非常重要的概念。其目的是删除重复的数据块,从而减少对存储空间的使用。这种想法的出发点是非常自然的。通常情况下,每次备份的数据总是会有一部分跟上一次备份的数据重合。比如,每次备份都要包含一个100..
分类:
其他好文 时间:
2014-09-12 19:20:14
阅读次数:
219
CREATE DEFINER=`root`@`%` PROCEDURE `sp_GetWangingsCount`(IN `PCode` VARCHAR(50), IN `FromDay` DATE, IN `Cycle` INT, IN `DayCount` INT, OUT `Rlt` INT, OUT `DayStr` VARCHAR(520)) LANGUAGE SQL NOT DE...
分类:
数据库 时间:
2014-09-12 13:38:53
阅读次数:
323
项目中有时会用到自动补全查询,就像Google搜索框、淘宝商品搜索功能,输入汉字或字母,则以该汉字或字母开头的相关条目会显示出来供用户选择, autocomplete插件就是完成这样的功能。 autocomplete官网 : http://bassistance.de/jquery-plugi...
分类:
Web程序 时间:
2014-09-12 11:53:23
阅读次数:
282
官网地址:http://bassistance.de/jquery-plugins/jquery-plugin-validationjQuery plugin: Validation 使用说明转载自:http://blog.sina.com.cn/s/blog_608475eb0100h3h1.ht...
http://programming.sirrida.de/Discussion topicsBit permutationsDownload source filesList of function descriptionsOnline source code generator for bit ...
分类:
Web程序 时间:
2014-09-11 23:40:02
阅读次数:
320
SQL分页语句一、比较万能的分页:sql代码:123select top 每页显示的记录数 * from topic where id not in(select top (当前的页数-1)×每页显示的记录数 id from topic order by id desc)order by id de...
分类:
Web程序 时间:
2014-09-11 17:09:02
阅读次数:
245
1,devstack shell 脚本开源官网http://devstack.org/脚本功能快速搭建 OpenStack 的运行和开发环境[Note tips by Ruiy devstack 不适合用在生产环境]devstack not appropriate for production de...
分类:
其他好文 时间:
2014-09-11 15:07:12
阅读次数:
287
levenshtein() 你有没有经历过需要知道两个单词有多大的不同的时候,这个函数就是来帮你解决这个问题的。它能比较出两个字符串的不同程度。 Source:? http://php.net/manual/en/function.levenshtein.php get_de...
分类:
Web程序 时间:
2014-09-11 12:39:52
阅读次数:
187
题目链接:点击打开链接
#include
#include
#include
#include
#include
typedef unsigned long long ll;
using namespace std;
const int N = 400 + 1;
const int M = 200000 + 1;
int t[N], w[N], g[51][M], ans[N], de...
分类:
其他好文 时间:
2014-09-10 23:57:41
阅读次数:
502
Abstract. Doxygen is the de facto standard tool for generating documentation from annotated C++ sources, but it also supports other popular programmin...
分类:
其他好文 时间:
2014-09-10 23:43:11
阅读次数:
282