NameSpace+Name作为服务元数据的唯一标示.BindingElement描述Binding的特征.绑定表示通信信道的配置,定义C/S间的协议。分为:传输信道(TCP,HTTP…),消息编码(Text,Binary,MTOM),协议信道(安全,事务,可靠性消息)。绑定由绑定元素组成,不同的绑...
分类:
其他好文 时间:
2014-06-13 06:20:40
阅读次数:
250
flume-ng
是一个分布式,高可用的日志收集系统。主要用来将分布在不同服务器上的业务日志汇总在一个集中的数据存储中心一
安装与环境配置下载地址http://flume.apache.org/download.html,下载Apache Flume
binary至目标服务器解压运行环境java版本...
分类:
其他好文 时间:
2014-06-10 21:03:30
阅读次数:
451
Boost库非常不错,所以我今天就安了它一下下。
Boost库不是C++标准库的一部分(据说在下一版本号的C++标准会採纳它),但它有一些标准库所没有的非常实用的一些功能,比方我非常须要的正則表達式(Regular
Expression)。所以我今天就在GCC上安装这个...
分类:
其他好文 时间:
2014-06-10 20:49:53
阅读次数:
308
ldd命令用于判断某个可执行的 binary 档案含有什么动态函式库。 参数说明: --version
打印ldd的版本号 -v --verbose 打印所有信息,例如包括符号的版本信息 -d --data-relocs
执行符号重部署,并报告缺少的目标对象(只对ELF格式适用) -r -...
分类:
其他好文 时间:
2014-06-10 19:54:17
阅读次数:
258
The gray code is a binary numeral system where
two successive values differ in only one bit.Given a non-negative
integernrepresenting the total number...
分类:
其他好文 时间:
2014-06-10 19:38:39
阅读次数:
199
前中后遍历 递归版 1 /* Recursive solution */ 2 class
Solution { 3 public: 4 vector preorderTraversal(TreeNode *root) { 5 6 vector
resul...
分类:
其他好文 时间:
2014-06-10 19:38:03
阅读次数:
219
RHEL6.5x64下memcached安装和使用从网上下载libevent-2.0.21-stable.tar.gz和memcached-1.4.5.tar.gz,然后运行第一步:安装gcc编译器[root@memcached~]#yum-yisnatllgcc第二步:安装libevent和memcached[root@memcachedsrv]#tarzxvflibevent-2.0.21-stable.tar.gz[root@memcac..
分类:
其他好文 时间:
2014-06-10 18:59:36
阅读次数:
335
自动安装oracle所需要的rpm包(需要访问外网):#!/bin/sh
rpmpack="
binutils
compat-libstdc++*
elfutils-libelf
elfutils-libelf-devel
elfutils-libelf-devel-static
gcc
gcc-c++
glibc
glibc-common
glibc-devel
glibc-headers
kernel-headers
ksh
libaio
libaio-devel
lib..
分类:
数据库 时间:
2014-06-10 18:46:44
阅读次数:
290
由于Node.js仅支持如下编码:utf8, ucs2, ascii, binary, base64, hex,并不支持中文GBK或GB2312之类的编码,
因此如果要读写中文内容,必须要用额外的模块:iconv-lite
注:Node的iconv模块,仅支持linux,不支持Windows,因此要用纯js的iconv-lite,另:作者说iconv-lite的性能更好,具体参考git站点:i...
分类:
Web程序 时间:
2014-06-10 17:52:42
阅读次数:
255
题目
Given two binary strings, return their sum (also a binary string).
For example,
a = "11"
b = "1"
Return "100".
方法
从后往前,每个字符进行判断。
public String addBinary(String a, String...
分类:
其他好文 时间:
2014-06-10 17:50:48
阅读次数:
241