查看端口:netstat -anp查看指定端口:netstat -anp | grep
9999tcp 0 0 0.0.0.0:9999 0.0.0.0:* LISTEN 4806/node tcp ...
分类:
其他好文 时间:
2014-05-16 23:03:55
阅读次数:
594
复习一下单链表的常用操作,包括单链表的创建、插入、删除、排序、逆置以及打印输出等。#includeusing namespace std;typedef
struct Single_link{ int data; struct Single_link *next;}node;//单链表的...
分类:
其他好文 时间:
2014-05-16 22:14:34
阅读次数:
397
Given a string S, find the longest palindromic
substring in S. You may assume that the maximum length of S is 1000, and there
exists one unique longes...
分类:
其他好文 时间:
2014-05-16 21:15:37
阅读次数:
454
one two three four five six seven eight
分类:
Web程序 时间:
2014-05-16 20:49:04
阅读次数:
340
Debug 是一个跟踪调试消息的 JavaScript 库。因为它只是对 console.log
的包装,所以支持 Node 和浏览器。它允许你过滤日志输出而不需要改变你的源代码,也输出时间差异,可以让您轻松地告诉你日志消息间隔多少时间。
分类:
其他好文 时间:
2014-05-16 19:16:32
阅读次数:
379
运行单独的节点意味着有将会面对单点故障——没有冗余的数据备份。幸运的是我们可以启动另外的node来保护我们的数据。一个新的node,只要他的cluster
name和已经存在的cluster节点的名称相同,就会自动加入这个cluster,并且能和其他的node进行通信。增加第二个node之后,clu...
分类:
其他好文 时间:
2014-05-16 19:11:21
阅读次数:
341
create table OA_WF_NODETEMP as select * from
oa_wf_node where 1=2
分类:
其他好文 时间:
2014-05-16 18:55:53
阅读次数:
202
用管理员身份运行命令提示符(CMD)然后输入“oradim-new-sidorcl”即可
分类:
数据库 时间:
2014-05-14 07:35:16
阅读次数:
312
不同的集群产品都有自己的特点,RAC的特点包括如下几点:
·双机并行。RAC是一种并行模式,并不是传统的主备模式。也就是说,RAC集群的所有成员都可以同时接收客户端的请求。
·高可用性。RAC是Oracle数据库产品高可用性的解决方案,能够保证在集群中只要有一个节点存活,就能正常对外提供服...
分类:
数据库 时间:
2014-05-14 07:13:48
阅读次数:
367
原题:
Say you have an array for which the ith element is the price of a given stock on day i.
If you were only permitted to complete at most one transaction (ie, buy one and sell one share of th...
分类:
其他好文 时间:
2014-05-13 14:12:41
阅读次数:
342