<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Rpc on 知识铺的博客</title>
    <link>https://index.zshipu.com/geek/tags/RPC/</link>
    <description>Recent content in Rpc on 知识铺的博客</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>zh-CN</language>
    <lastBuildDate>Wed, 06 Mar 2024 10:34:00 +0000</lastBuildDate>
    <atom:link href="https://index.zshipu.com/geek/tags/RPC/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>RPC模块简析</title>
      <link>https://index.zshipu.com/geek/post/code/docs/Dubbo/RPC/RPC%E6%A8%A1%E5%9D%97%E7%AE%80%E6%9E%90/</link>
      <pubDate>Wed, 06 Mar 2024 10:34:00 +0000</pubDate>
      <guid>https://index.zshipu.com/geek/post/code/docs/Dubbo/RPC/RPC%E6%A8%A1%E5%9D%97%E7%AE%80%E6%9E%90/</guid>
      <description>Dubbo RPC 框架是一个高性能、轻量级的 Java RPC 框架，它提供了一套完整的远程过程调用解决方案。Dubbo RPC 框架由多个模块组成，其中 RPC 模块是其核心模块之一，负责实现远程过程调用的核心功能。 以下是 Dubbo RPC 中 RPC 模块的相关内容： RPC 模块的组成 Dubbo RPC 中的 RPC 模块主要包含了以下几个组件： Protocol：协议组件，</description>
    </item>
    <item>
      <title>Proxy组件</title>
      <link>https://index.zshipu.com/geek/post/code/docs/Dubbo/RPC/Proxy%E7%BB%84%E4%BB%B6/</link>
      <pubDate>Wed, 06 Mar 2024 10:33:00 +0000</pubDate>
      <guid>https://index.zshipu.com/geek/post/code/docs/Dubbo/RPC/Proxy%E7%BB%84%E4%BB%B6/</guid>
      <description>Dubbo RPC 框架中的 Proxy 组件是其核心组件之一，它负责创建服务消费者的代理对象，并通过代理对象将请求发送给服务提供者。Proxy 组件使用了动态代理技术，通过 JDK 动态代理或 CGLIB 动态代理创建服务消费者的代理对象。 以下是 Dubbo RPC 中 Proxy 组件的相关内容： Proxy 接口 Proxy 接口是 Dubbo RPC 中的核心接口之一，它定义了 Dubbo RPC 中的代理对</description>
    </item>
    <item>
      <title>Protocol组件</title>
      <link>https://index.zshipu.com/geek/post/code/docs/Dubbo/RPC/Protocol%E7%BB%84%E4%BB%B6/</link>
      <pubDate>Wed, 06 Mar 2024 10:32:00 +0000</pubDate>
      <guid>https://index.zshipu.com/geek/post/code/docs/Dubbo/RPC/Protocol%E7%BB%84%E4%BB%B6/</guid>
      <description>Dubbo RPC 框架中的 Protocol 组件是其核心组件之一，它负责实现远程通信的协议栈。Protocol 组件包含了 Dubbo RPC 框架中的各种协议实现，如 Dubbo 协议、Hessian 协议、HTTP 协议等。 以下是 Dubbo RPC 中 Protocol 组件的相关内容： Protocol 接口 Protocol 接口是 Dubbo RPC 中的核心接口之一，它定义了 Dubbo RPC 中的协议栈应该具有的功能。Protoco</description>
    </item>
    <item>
      <title>Hessian协议</title>
      <link>https://index.zshipu.com/geek/post/code/docs/Dubbo/RPC/Hessian%E5%8D%8F%E8%AE%AE/</link>
      <pubDate>Wed, 06 Mar 2024 10:31:00 +0000</pubDate>
      <guid>https://index.zshipu.com/geek/post/code/docs/Dubbo/RPC/Hessian%E5%8D%8F%E8%AE%AE/</guid>
      <description>Dubbo RPC 框架支持多种序列化协议，其中 Hessian 协议是其默认的序列化协议之一。Hessian 协议是一种二进制序列化协议，它具有高性能和低延迟的特点，因此在 Dubbo 中被广泛使用。 以下是 Dubbo RPC 中 Hessian 协议的相关内容： Hessian 序列化协议 Hessian 协议是一种二进制序列化协议，它可以将 Java 对象序列化为二进制数据，并将二进制数据反序</description>
    </item>
    <item>
      <title>Dubbo协议</title>
      <link>https://index.zshipu.com/geek/post/code/docs/Dubbo/RPC/Dubbo%E5%8D%8F%E8%AE%AE/</link>
      <pubDate>Wed, 06 Mar 2024 10:30:00 +0000</pubDate>
      <guid>https://index.zshipu.com/geek/post/code/docs/Dubbo/RPC/Dubbo%E5%8D%8F%E8%AE%AE/</guid>
      <description>Dubbo协议 Dubbo 是一种高性能、轻量级的开源 Java RPC 框架，它提供了三大核心能力：面向接口的远程方法调用，智能容错和负载均衡，以及服务自动注册和发现。 Dubbo 使用协议是基于长连接和短连接的，支持多种序列化协议，如 Hessian2、Java、JSON 等。其中，Dubbo 默认使用的是 Hessian2 序列化协议，</description>
    </item>
    <item>
      <title>架构知乎服务化的实践与思考</title>
      <link>https://index.zshipu.com/geek/post/%E4%BA%92%E8%81%94%E7%BD%91/%E6%9E%B6%E6%9E%84%E7%9F%A5%E4%B9%8E%E6%9C%8D%E5%8A%A1%E5%8C%96%E7%9A%84%E5%AE%9E%E8%B7%B5%E4%B8%8E%E6%80%9D%E8%80%83/</link>
      <pubDate>Mon, 14 Mar 2022 19:50:45 +0800</pubDate>
      <guid>https://index.zshipu.com/geek/post/%E4%BA%92%E8%81%94%E7%BD%91/%E6%9E%B6%E6%9E%84%E7%9F%A5%E4%B9%8E%E6%9C%8D%E5%8A%A1%E5%8C%96%E7%9A%84%E5%AE%9E%E8%B7%B5%E4%B8%8E%E6%80%9D%E8%80%83/</guid>
      <description>服务化是知乎几年来技术演进故事里的一个主角，公司规模从几十人到几百人，在监控、tracing、框架、容器等基础设施从无到有的同时，也扩展出多个后端技术团队。在服务化演进的过程里，我们也进行了一些新的思考。 服务化的愿景 「微服务」 是业内最近两三年业内很火的 buzzword，迁移到微服</description>
    </item>
  </channel>
</rss>
