redis简单调用jar包:jedis-2.1.0.jar commons-pool-1.5.4.jarpublic static void main(String[] args) {Jedis jedis = new Jedis("192.168.1.125");jedis.set("lsf...
分类:
其他好文 时间:
2015-04-03 00:15:00
阅读次数:
140
数据类型1.Objective-C数据类型可以分为:基本数据类型、对象数据类型和id类型。2.基本数据类型有:int、float、double和char类型。3.对象类型就是类或协议所声明的指针类型,例如: NSAutoreleasePool *pool ,其中,NSAutoreleasePool....
分类:
其他好文 时间:
2015-04-02 23:59:40
阅读次数:
687
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top() -- Get ...
分类:
其他好文 时间:
2015-04-02 21:00:58
阅读次数:
104
SharePoint 2013 Farm最大支持20个WebApplication.这个限制和Application Pool的限制无关,是对于整个Farm来讲的。微软建议把Web Application的数目控制的越小越好。如果想要多个不同名字的site,可以用创建host named 网站集来代替添加新的web application。...
分类:
移动开发 时间:
2015-04-02 15:08:23
阅读次数:
136
题目:Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given 1->2->3->4, you should return the list as 2->1->4->3.
Your algorithm should use only constant space...
分类:
其他好文 时间:
2015-04-02 10:31:49
阅读次数:
114
CacheTiering的基本思想是冷热数据分离,用相对快速/昂贵的存储设备如SSD盘,组成一个Pool来作为Cache层,后端用相对慢速/廉价的设备来组建冷数据存储池。CephCacheTieringAgent处理缓存层和存储层的数据的自动迁移,对客户端透明操作透明。Cahe层有两种典型使用模式:1)Write..
分类:
系统相关 时间:
2015-04-01 20:11:13
阅读次数:
319
中文乱码一般在代码里面设置编码方式,getResponse().setCharacterEncoding(Constant.CODE_UTF_8);
getRequest().setCharacterEncoding(Constant.CODE_UTF_8);但这只对post有效,对于get则需要在Web容器中配置,Tomcat配置参考:http://blog.csdn.net/calmreason...
分类:
其他好文 时间:
2015-04-01 17:38:29
阅读次数:
212
一. 说到mysql的调优,有许多的点可以让我们去做,因此梳理下,一些调优的策略,今天只是总结下服务器参数的调优 其实说到,参数的调优,我的理解就是无非两点:如果是Innodb的数据库,innodb_buffer_pool_size就开的尽可能大点,我一般都是开内存的80%左右如果是MyISAM的....
分类:
数据库 时间:
2015-03-31 19:30:27
阅读次数:
200
当屏幕多久没有点击的时候,进行某种操作就是所谓的锁屏功能。onCreate: public void addRunnable() { handler.postDelayed(runnable, Constant.WAIT_TIME); }监听触摸事件: @Overri...
分类:
移动开发 时间:
2015-03-31 17:56:40
阅读次数:
206
ip dhcp pool 地址池名
ip dhcp pool vlan10
network 192.168.10.0 /24
default-router 192.168.10.254 网关
dns-server 202.103.96.85 定义分配给pc的dns
ip dhcp excluded-address 192.168.10.254 --地址池中排除某地址
pc:
int f0/...
分类:
其他好文 时间:
2015-03-31 09:16:19
阅读次数:
185