
分布式服务框架
jxluoix
能够自己独立开发中小型的软件系统;
对工作态度认真、执着、诚恳;勇于专研、探索、创新;
接受新事物快、见识宽广.
展开
-
分布式系统
Lamport’s “Time, Clocks and the Ordering of Events in a Distributed System” (1978) http://www.ics.uci.edu/~cs230/reading/time.pdf 在Lamport’s “Time, Clocks and the Ordering of Events in ...原创 2016-09-26 00:02:24 · 108 阅读 · 0 评论 -
Java service provider-lookup mechanism(发现机制)
1、http://docs.oracle.com/javase/1.4.2/docs/guide/jar/jar.html#Service%20Provider 2、http://docs.oracle.com/javase/1.5.0/docs/guide/jar/jar.html#Service%20Provider 3、http://docs.oracle.com/javase...原创 2016-11-02 09:44:11 · 141 阅读 · 0 评论 -
Java service provider-lookup mechanism(发现机制)-1
public interface CacheLookup { public String naming(); public Object get(); public void add(Object cache); public void remove(Object cache); } public class Defaul...2016-12-01 18:59:54 · 237 阅读 · 0 评论 -
Java service provider-lookup mechanism(发现机制)-2
public interface Coherence { public String naming(); } public class DefaultCoherence implements Coherence { public String naming() { return "default coherence protocol...2016-12-01 19:08:27 · 160 阅读 · 0 评论 -
Thrift序列化
参考struct Field 上面的Field Id对应下面例子中”:”前面的数字: struct Order { 1: required i64 orderId; 2: required i64 userId; 3: required string status; } Field stop ->...2017-10-28 03:50:32 · 225 阅读 · 0 评论 -
以前整理的一点Thrift的资料
以前整理的一点Thrift的资料2017-10-28 05:42:39 · 181 阅读 · 0 评论 -
dubbo 协议
encode one to one org.jboss.netty.handler.codec.oneone.OneToOneEncoder com.alibaba.dubbo.remoting.transport.netty.NettyCodecAdapter.InternalEncoder org.jboss.netty.handler.codec.base64.Base64E...2017-12-06 16:32:01 · 235 阅读 · 0 评论