刚安装完虚拟机,用xshell连接上linux后,安装程序时一直出现这个信息Another app is currently holding the yum lock; waiting for it to exit... 解决方法:rm -rf /var/run/yum.pid 来强行解除锁定,然后 ...
分类:
移动开发 时间:
2016-08-31 00:20:56
阅读次数:
161
从JDK1.0开始,Integer中就定义了MIN_VALUE和MAX-VALUE两个常量:/** * A constant holding the minimum value an {@code int} can * have, -231. */public static final int MI... ...
分类:
编程语言 时间:
2016-08-11 15:56:17
阅读次数:
1564
Java Provides a number of ways to hold objects: An array associates numerical indexes to objects. It holds objects of a known type so that you don't h ...
分类:
其他好文 时间:
2016-07-31 19:05:14
阅读次数:
205
小技巧: 通过以下命令找到yum.pid的具体路径,然后rm -rf掉。 ...
分类:
移动开发 时间:
2016-07-20 22:41:32
阅读次数:
211
这种错误是由于查询Redis时采用的查询方法与对应的Key的数据类型不匹配引起的 Redis的五种数据类型: 字符串(Strings) 列表(Lists) 集合(Sets) 哈希(Hashes) 有序集合(Sorted Sets) ...
分类:
其他好文 时间:
2016-07-08 13:28:18
阅读次数:
281
Problem Description
We all know that Bin-Laden is a notorious terrorist, and he has disappeared for a long time. But recently, it is reported that he hides in Hang Zhou of China!
“Oh, God! How terri...
分类:
其他好文 时间:
2016-06-26 18:33:03
阅读次数:
180
Holding Bin-Laden Captive! Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 19908 Accepted Submiss ...
分类:
其他好文 时间:
2016-05-28 19:12:26
阅读次数:
212
今天改动代码,一运行就跑错了,错误原因: 因为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
可能是系统自动升级正在运行,yum在锁定状态中。可以通过强制关掉yum进程:#rm-f/var/run/yum.pid然后就可以使用yum了。
分类:
移动开发 时间:
2016-03-16 01:43:10
阅读次数:
176