Getting Started ? 入门 1.1 Introduction ? 简介 ?? Kafka is a distributed, partitioned, replicated commit log service. It provides the functionality of a messaging system, ?but with a unique d...
分类:
其他好文 时间:
2014-09-28 20:10:56
阅读次数:
450
empty() 判断变量是否为“空”,isset() 判断变量是否已经设置。例:$id=0;empty($id)?print"It'sempty.":print"It's$id.";//结果:It'sempty.!isset($id)?print"It'sempty.":print"It's$id....
分类:
Web程序 时间:
2014-09-28 13:02:02
阅读次数:
171
1:请描述数据结构中栈和队列的区别。并说出3个操作。
答:栈先进后出。队列先进先出。例如(pop() push() empty() back() front());
2:请描述一下C++中多态。举个例子:
我学java的。但我记得多态应该是重载和重写。
重载
Class A
{
int foo(int a){...}
int foo(int a,int b){...}...
分类:
其他好文 时间:
2014-09-27 02:11:49
阅读次数:
191
1 class Empty 2 { 3 public: 4 Empty(); 5 Empty(const Empty&); 6 ~Empty(); 7 Empty & operator =(const Empty &); 8 Empt...
分类:
编程语言 时间:
2014-09-26 23:47:08
阅读次数:
233
Spring源代码解析(一):IOC容器:http://www.javaeye.com/topic/86339Spring源代码解析(二):IoC容器在Web容器中的启动:http://www.javaeye.com/topic/86594Spring源代码解析(三):Spring JDBC:htt...
分类:
编程语言 时间:
2014-09-26 14:20:38
阅读次数:
203
storm与kafka单机功能整合很顺利,但是到了storm集群环境和数据处理性能时则出现了一些问题,现将测试过程和问题简单记录如下: ? ? 性能指标:每分钟处理至少100万的信息(csv格式,100bytes左右),信息...
分类:
其他好文 时间:
2014-09-26 12:59:39
阅读次数:
228
PHP5.6...运算符定义变长参数函数...运算符进行参数展开**进行幂运算usefunction以及useconst__debugInfo()PHP5.5.0新增Generators新增finally关键字foreach现在支持list()empty()支持任意表达式arrayandstringliteraldereferencing,例:echo[1,2,3][0];PHP5.4.0新增支持trait..
分类:
Web程序 时间:
2014-09-26 01:11:48
阅读次数:
205
PHP5.6...运算符定义变长参数函数...运算符进行参数展开**进行幂运算usefunction以及useconst__debugInfo()PHP5.5.0新增Generators新增finally关键字foreach现在支持list()empty()支持任意表达式arrayandstringliteraldereferencing,例:echo[1,2,3][0];PHP5.4.0新增支持trait..
分类:
Web程序 时间:
2014-09-26 00:21:28
阅读次数:
222
GBK是在国家标准GB2312基础上扩容后兼容GB2312的标准(好像还不是国家标准)。GBK编码专门用来解决中文编码的,是双字节的。不论中英文都是双字节的。UTF-8编码是用以解决国际上字符的一种多字节编码,它对英文使用8位(即一个字节),中文使用24位(三个字节)来编码。对于英文字符较多的论坛则...
分类:
其他好文 时间:
2014-09-25 23:14:27
阅读次数:
201
总结:
???1.kafka?中可以分步不同的组,消息可以被不同组里面的消费者多次消费
???2.?观察zookeeper中kafka中的信息:
[zk:?air00:2181(CONNECTED)?8]?ls?/
[consumers,?config,?controller,?adm...
分类:
其他好文 时间:
2014-09-25 16:08:39
阅读次数:
209