Redis是一种高级key-value数据库。它跟memcached类似,不过数据可以持久化,而且支持的数据类型很丰富。有字符串,链表,集 合和有序集合。支持在服务器端计算集合的并,交和补集(difference)等,还支持多种排序功能。所以Redis也可以被看成是一个数据结构服务 器。Redis的...
分类:
系统相关 时间:
2014-07-19 16:26:46
阅读次数:
310
止乎于分享!IDCode18 = { validate: function (value) { if (value.length != 18) return false; var value = value.toLowerCase(); var sum...
分类:
其他好文 时间:
2014-07-19 16:24:38
阅读次数:
230
当页面很短的时候,没有纵向滚动条,点击头部菜单,导航,会有闪动。解决办法:body{overflow-y:scroll;}
分类:
其他好文 时间:
2014-07-19 00:34:35
阅读次数:
338
1. 设计好一组分类信息;2. 在列表页模板中填写帖子的标题格式,例如:[{producer_value}][{artist_value}]{subject}[{size_value}{size_unit}]3. 修改template\default\forum\forumdisplay_list....
分类:
其他好文 时间:
2014-07-19 00:15:50
阅读次数:
407
项目当中用到cookie保存中文,但是会报如下错误:Control character in cookie value, consider BASE64 encoding your value大概意思是保存到cookie当中的值存在控制字符,无法保存。但实际上数据是不存在这种问题的。再看后面的那句话...
分类:
编程语言 时间:
2014-07-18 18:31:32
阅读次数:
303
int iValue = new Integer(strValue).intValue();String str = intObj.toString();int number = Integer.parseInt(str);public static Object read(String value...
分类:
编程语言 时间:
2014-07-18 18:24:40
阅读次数:
300
用javascript实现控制一个文本框的输入字数限制,超出字数限制文本框飘红显示。html javascript var str = document.getElementById("text"); str.onkeyup=function(){ var con = str.value; va.....
分类:
编程语言 时间:
2014-07-18 18:23:18
阅读次数:
292
【C# ValueTypes】1、哪些类型是ValueType?The value types consist of two main categories:StructsEnumerationsStructs fall into these categories:Numeric typesInte...
分类:
其他好文 时间:
2014-07-18 18:18:20
阅读次数:
217
Since no order requirement, we can simply swap the target value to the last non-target-value in the array - if the last non-target-value is not behind...
分类:
其他好文 时间:
2014-07-18 17:36:41
阅读次数:
192
【boxing & unboxing】 Boxing is the process of converting avalue typeto the typeobjector to any interface type implemented by this value type.When the ....
分类:
其他好文 时间:
2014-07-18 17:24:23
阅读次数:
240