- 授权协议: LGPL
- 开发语言: Java SHELL
- 操作系统: 跨平台
- 软件首页: http://ruedigermoeller.github.io/fast-cast/
- 软件文档: https://github.com/RuedigerMoeller/fast-cast/blob/3.0/README.md
- 官方下载: https://github.com/RuedigerMoeller/fast-cast/releases
软件介绍
基于主题的高性能、可靠无代理 UDP 消息传递(“事件总线”)。可承受每秒高达 700 万个 70 字节的消息。
实现 NAK 协议所需的缓冲区不受影响,因此对 GC 的影响不大。如果配置得当,能保证可靠、有边界的低延迟。
要求 JDK 1.7 或更高版本
示例代码
基于快速序列化的对象组播(=广播)发布者:
public static void main(String arg[]) {
FastCast.getFastCast().setNodeId("PUB"); // 5 chars MAX !!
configureFastCast();
FCPublisher pub = FastCast.getFastCast().onTransport("default").publish(
new PublisherConf(1) // unique-per-transport topic id
.numPacketHistory(40_000) // nuber of packets kept for retransmission requests
.pps(5000) // packets per second rate limit. So max traffic for topic = 5000*2500 = 12.5 MB/second
);
// use a helper for fast-serialized messages
ObjectPublisher opub = new ObjectPublisher(pub);
RateMeasure measure = new RateMeasure("msg/s");
while( true ) {
measure.count();
opub.sendObject(
null, // all listeners should receive (by specifying a nodeId, a specific subscriber can be targeted)
"Hello "+System.currentTimeMillis(), // serializable object
false // allow for 'batching' several messages into one (will create slight latency)
);
}
}
百度SEO一本通
潘坚、李迅 / 电子工业出版社 / 2015-6 / 59.00元
《百度SEO一本通》通过浅显易懂的叙述方式,以及大量的图示,详细介绍了SEO的关键技术要点,对于搜索引擎优化中重要的关键词优化、链接优化,以及百度推广中的推广技巧都进行了详细的介绍。 《百度SEO一本通》共分为11章,首先让大家了解SEO存在的原因,然后对网页、网站、空间和程序与SEO的关系展开了细节上的讨论,最后几章深入介绍了百度推广的相关概念、设置、技巧和实操,让读者可以轻松上手操作,易......一起来看看 《百度SEO一本通》 这本书的介绍吧!
