2016年7月4日 星期一 --出埃及记 Exodus 14:31And when the Israelites saw the great power the LORD displayed against the Egyptians, the people feared the LORD and ...
分类:
其他好文 时间:
2016-07-04 08:52:16
阅读次数:
130
Raid Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 10625 Accepted: 3192 Description After successive failures in the battles against the ...
分类:
其他好文 时间:
2016-07-04 01:12:53
阅读次数:
305
一、概述 MySQL全文检索是利用查询关键字和查询列内容之间的相关度进行检索,可以利用全文索引来提高匹配的速度。 二、语法 1 2 MATCH (col1,col2,...) AGAINST (expr [search_modifier]) search_modifier: { IN BOOLEAN ...
分类:
数据库 时间:
2016-06-30 17:53:58
阅读次数:
228
Question 1. Problem statement: Consider a row of n coins of values v1 . . . vn, where n is even. We play a game against an opponent by alternating tur ...
分类:
其他好文 时间:
2016-06-18 12:59:12
阅读次数:
149
git help add -A, --all Like -u, but match <filepattern> against files in the working tree in addition to the index. That means that it will find new f ...
分类:
其他好文 时间:
2016-06-13 11:20:57
阅读次数:
123
This lesson shows you how to install TypeScript and run the TypeScript compiler against a .ts file from the command line. install: app.ts: RUN: You wi ...
分类:
其他好文 时间:
2016-06-09 06:15:45
阅读次数:
144
原题链接:
http://acm.hdu.edu.cn/showproblem.php?pid=1044
一:原题内容
Problem Description
It is written in the Book of The Lady: After the Creation, the cruel god Moloch rebelled against the author...
分类:
其他好文 时间:
2016-05-12 18:59:19
阅读次数:
156
一、概述 MySQL全文检索是利用查询关键字和查询列内容之间的相关度进行检索,可以利用全文索引来提高匹配的速度。 二、语法 例如: 即:MATCH 相当于要匹配的列,而 AGAINST 就是要找的内容。 这里的table需要是MyISAM类型的表,col1、col2 必须是char、varchar或 ...
分类:
数据库 时间:
2016-05-05 22:02:58
阅读次数:
316
今天改动代码,一运行就跑错了,错误原因: 因为redis中已经存在了相同的key, 而且key对应的值类型并不是Set,而是SortSet(改动前);再调用smembers时,抛出此错误。 解决方法: 将原来的SortSet类型的key给Del掉,再从新执行代码,没有问题。 看来以后改动缓存类型时, ...
分类:
其他好文 时间:
2016-05-05 10:55:27
阅读次数:
168
1、Redis报错:ERR Operation against a key holding the wrong kind of value 解决处理 redis 127.0.0.1:6379>type key 查找key的数据类型,使用对应的命令进行操作 在线命令说明: http://doc.red... ...
分类:
其他好文 时间:
2016-05-03 10:43:36
阅读次数:
172