CentOS6关闭防火墙: 注: Centos7使用同样命令,会提示 CentOS7关闭防火墙: 也可以安装iptables-services,使用下面的命令 ...
分类:
其他好文 时间:
2018-12-02 10:29:57
阅读次数:
1109
Recently one of my client has faced weird situation related to SQL Server Replication. Their main database goes down so they started running mirroring ...
分类:
其他好文 时间:
2018-11-29 12:22:16
阅读次数:
176
945. Minimum Increment to Make Array Unique Given an array of integers A, a move consists of choosing any A[i], and incrementing it by 1. Return the l ...
分类:
其他好文 时间:
2018-11-25 14:29:51
阅读次数:
168
object obj = HttpRuntime.Cache.Get(key); if (obj == null ) { Debug.WriteLine(key + "被添加进Cache, 过期时间一分钟"); HttpRuntime.Cache.Add(key, "1", null, Cache. ...
分类:
其他好文 时间:
2018-11-24 14:13:50
阅读次数:
184
本章的主题是Bitmap的加载和Cache,主要包含三个方面的内容。首先讲述如何有效地加载一个Bitmap,这是一个很有意义的话题,由于Bitmap的特殊性以及Android对单个应用所施加的内存限制,比如16MB,这导致Bitmap加载的时候很容易出现内存溢出。下面这个异常信息在开发中应该经常遇到 ...
分类:
移动开发 时间:
2018-11-22 00:12:29
阅读次数:
206
一、背景: 线程不安全的HashMap 因为多线程环境下,使用Hashmap进行put操作会引起死循环,导致CPU利用率接近100%,所以在并发情况下不能使用HashMap。 效率低下的HashTable容器 HashTable容器使用synchronized来保证线程安全,但在线程竞争激烈的情况下 ...
分类:
编程语言 时间:
2018-11-20 16:19:44
阅读次数:
188
Design a HashSet without using any built-in hash table libraries. To be specific, your design should include these functions: add(value): Insert a val ...
分类:
其他好文 时间:
2018-11-15 23:40:50
阅读次数:
349
Optimal Milking Description: FJ has moved his K (1 <= K <= 30) milking machines out into the cow pastures among the C (1 <= C <= 200) cows. A set of p ...
分类:
其他好文 时间:
2018-11-15 19:50:21
阅读次数:
227
在本文中列出了21个值得收藏的Javascript技巧,在实际工作中,如果能适当运用,则大大提高工作效率。 1 Javascript数组转换为CSV格式 首先考虑如下的应用场景,有一个Javscript的字符型(或者数值型)数组,现在需要转换为以逗号分割的CSV格式文件。则我们可以使用如下的小技巧, ...
分类:
编程语言 时间:
2018-11-11 19:08:09
阅读次数:
213
Symfony Version: 当运行 会出现 运行 而解决 文件不存在, 我是参考 "doctrine common 2.9 has moved reflection" 在 composer.json 中 添加 然后运行 重新运行 看到 doctrine/common 降到 2.8.0了,直接运 ...
分类:
系统相关 时间:
2018-11-03 19:12:22
阅读次数:
290