1.CLOUD打开 提示错误:未能加载文件或程序集“XXXXXXXXX”或它的某一个依赖项原因:未正常关机导致的Temporary ASP.NET Files文件夹下的文件损坏解决:删除C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary...
分类:
其他好文 时间:
2015-03-10 11:48:14
阅读次数:
349
/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace csxaj_temp tempfile 'D:\oracle\oradata\scpinganka\csxaj_temp.dbf' size 50m autoextend on next...
分类:
数据库 时间:
2015-03-06 12:44:03
阅读次数:
214
Although the queues and workers paradigm breaks down for large numbers of messages, message processing is clearly the fundamental paradigm for realtime computation....
分类:
其他好文 时间:
2015-03-05 00:19:33
阅读次数:
175
ORA-14450 attempt to access a transactional temp table already in useCause: An attempt was made to access a transactional temporary table that has bee...
分类:
其他好文 时间:
2015-03-03 11:18:53
阅读次数:
171
[c实现的队列](http://www.1024cores.net/home/lock-free-algorithms/queues/non-intrusive-mpsc-node-based-queue) 下面是akka实现的一个MPSC队列。 PS: 代码中注释对链头链尾判定的标准是添加的元素所在的位置...
分类:
其他好文 时间:
2015-03-02 11:28:32
阅读次数:
338
Oracle中的临时表在Oracle中,临时表是“静态”的,它与普通的数据表一样只需要一次创建,其结构从创建到删除的整个期间都是有效的。相对于其他类型的表,临时表只有在用户实际向表中添加数据时,才会为其分配空间,并且分配的空间来自临时表空间。这就避免了与永久对象的数据争用存储空间。创建临时表的语法如下:CREATE GLOBAL TEMPORARY TABLE table_name(
col...
分类:
数据库 时间:
2015-03-01 23:51:49
阅读次数:
401
先解决问题:“c:\Windows\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET Files\root\8d57d图:其他的解决方案均没有成功如:1 设置c:windows\temp 目录访问权限 temp--> 属性-->安全-- >...
Time Limit:3000MS Memory Limit:0KBDescriptionQueues and Priority Queues are data structures which are known to most computer scientists. The Team Queu...
本文的大部分参考自下面这篇blog:http://hongjiang.info/java-referencequeue/
先上图:
WeakHashMap的实现是通过ReferenceQueue这个“监听器”来优雅的实现自动删除那些引用不可达的key的。
先看看ReferenceQueue在Java中的描述:
Reference queues, to which reg...
分类:
其他好文 时间:
2015-02-24 19:52:54
阅读次数:
181
/* Promise */function Promise() { this.queues = []; this.fails = []; this.progress = []; this.nextVal = null; this.nextErr = null;}Promise.protot...
分类:
其他好文 时间:
2015-02-16 18:13:25
阅读次数:
240