This is an automated email from the ASF dual-hosted git repository.
chaokunyang pushed a commit to branch optimize_website
in repository https://gitbox.apache.org/repos/asf/fory-site.git
The following commit(s) were added to refs/heads/optimize_website by this push:
new 034f893bbb Sync Chinese overview docs
034f893bbb is described below
commit 034f893bbb3620bf2f1e1fe99474c79af8cdf92f
Author: chaokunyang <[email protected]>
AuthorDate: Fri May 22 02:33:32 2026 +0800
Sync Chinese overview docs
---
.../current/introduction/overview.md | 86 ----------------------
.../version-1.0.0/introduction/overview.md | 86 ----------------------
2 files changed, 172 deletions(-)
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/overview.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/overview.md
index 11a0117912..929aa34ed4 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/overview.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/overview.md
@@ -4,11 +4,6 @@ title: 概述
sidebar_position: 1
---
-<div class="themed-logo">
- <img width="65%" alt="Apache Fory logo" src="/img/fory-logo-dark.png"
class="themed-logo-dark"/>
- <img width="65%" alt="Apache Fory logo" src="/img/fory-logo-light.png"
class="themed-logo-light"/>
-</div>
-
**Apache Fory™** 是一个高性能多语言序列化框架,面向原生对象序列化和跨语言二进制编解码,支持 Schema IDL、对象引用、Schema
演进、Row Format 随机访问与零拷贝读取。
Fory 面向跨语言、跨运行时的紧凑高吞吐序列化而构建。它可以直接处理应用中的对象;当需要稳定契约时,也可以使用共享
Schema;同时保留对象图中的共享引用、循环引用和多态运行时类型等语义。
@@ -105,84 +100,3 @@ Fory 让热点路径保持高速,同时不要求所有运行时采用相同实
- **生成式和静态序列化器**:其他运行时在合适场景下使用生成式或静态序列化器。
- **零拷贝路径**:行格式和带外 buffer 可避免大值的不必要复制。
- **元数据共享**:复用或打包重复类型信息,降低序列化开销。
-
-### 生产就绪
-
-企业级安全性和兼容性:
-
-- **类注册**:基于白名单的反序列化控制(默认启用)
-- **深度限制**:防止递归对象图攻击
-- **可配置策略**:自定义类检查器和反序列化策略
-- **平台支持**:Java 8-24、GraalVM 原生镜像、多操作系统平台
-
-## 协议
-
-Apache Fory™ 实现了针对不同场景优化的多个二进制协议:
-
-| 协议 | 使用场景
| 核心特性 |
-| ---------------------------------------------------------------- |
----------------- | --------------------------------- |
-| **[跨语言序列化](../specification/xlang_serialization_spec.md)** | 跨语言对象交换 |
自动序列化、引用、多态 |
-| **[Java 序列化](../specification/java_serialization_spec.md)** | 高性能 Java 专用
| Java 原生对象图、JDK 钩子、优化运行时 |
-| **[行格式](../specification/row_format_spec.md)** | 分析和数据处理 |
零拷贝随机访问、Arrow 兼容 |
-| **Python 原生** | Python
专用序列化 | Pickle/cloudpickle 替代,性能更好 |
-
-所有协议共享相同的优化代码库,一个协议的改进可以惠及其他协议。
-
-## 文档
-
-### 用户指南
-
-| 指南 | 描述 | 源文件
| 网站
|
-| ---------------- | ----------------------- |
-------------------------------------------------------------------------------------
| -------------------------------------- |
-| **Java 序列化** | Java 序列化综合指南 | [Java
指南](https://github.com/apache/fory/blob/main/docs/guide/java/) |
[查看](../guide/java) |
-| **跨语言序列化** | 多语言对象交换 | [Xlang
指南](https://github.com/apache/fory/blob/main/docs/guide/xlang/) |
[查看](../guide/xlang) |
-| **行格式** | 零拷贝随机访问格式 | [Java
行格式](https://github.com/apache/fory/blob/main/docs/guide/java/row-format.md) |
[查看](../guide/java/row-format.md) |
-| **Python** | Python 特定功能和用法 | [Python
指南](https://github.com/apache/fory/blob/main/docs/guide/python/) |
[查看](../guide/python) |
-| **Rust** | Rust 实现和模式 | [Rust
指南](https://github.com/apache/fory/blob/main/docs/guide/rust/) |
[查看](../guide/rust) |
-| **Go** | Go 实现和用法 | [Go
指南](https://github.com/apache/fory/blob/main/docs/guide/go/)
| [查看](../guide/go) |
-| **Scala** | Scala 集成和最佳实践 | [Scala
指南](https://github.com/apache/fory/blob/main/docs/guide/scala/) |
[查看](../guide/scala) |
-| **GraalVM** | 原生镜像支持和 AOT 编译 | [GraalVM
支持](https://github.com/apache/fory/blob/main/docs/guide/java/graalvm-support.md)
| [查看](../guide/java/graalvm_support) |
-| **开发** | 构建和贡献 Fory |
[开发指南](https://github.com/apache/fory/blob/main/docs/DEVELOPMENT.md)
| [查看](../community/DEVELOPMENT.md) |
-
-### 协议规范
-
-| 规范 | 描述 | 源文件
| 网站
|
-| ---------------- | ------------------ |
----------------------------------------------------------------------------------------------------------------------
| ------------------------------------------------------- |
-| **跨语言序列化** | 跨语言二进制协议 |
[xlang_serialization_spec.md](https://github.com/apache/fory/blob/main/docs/specification/xlang_serialization_spec.md)
| [查看](../specification/xlang_serialization_spec.md) |
-| **Java 序列化** | Java 优化协议 |
[java_serialization_spec.md](https://github.com/apache/fory/blob/main/docs/specification/java_serialization_spec.md)
| [查看](../specification/java_serialization_spec.md) |
-| **行格式** | 基于行的二进制格式 |
[row_format_spec.md](https://github.com/apache/fory/blob/main/docs/specification/row_format_spec.md)
| [查看](../specification/row_format_spec.md) |
-| **类型映射** | 跨语言类型转换 |
[xlang_type_mapping.md](https://github.com/apache/fory/blob/main/docs/specification/xlang_type_mapping.md)
| [查看](../specification/xlang_type_mapping.md) |
-
-## 兼容性
-
-### Schema 兼容性
-
-Apache Fory™ 支持 **Java、Python、Rust 和 Golang** 的类 Schema 向前/向后兼容,支持生产系统中的无缝
Schema 演进,无需跨所有服务协调升级。Fory 提供两种 Schema 兼容性模式:
-
-1. **Schema 一致模式(默认)**:假设序列化和反序列化端之间的类 Schema
相同。此模式提供最小的序列化开销、最小的数据大小和最快的性能:适用于稳定的 Schema 或受控环境。
-
-2. **兼容模式**:支持独立的 Schema 演进,具有向前和向后兼容性。此模式支持字段添加/删除、有限的类型演进和优雅处理 Schema 不匹配。在
Java 中使用 `withCompatibleMode(CompatibleMode.COMPATIBLE)` 启用,在 Python 中使用
`compatible=True`,在 Rust 中使用 `compatible_mode(true)`,在 Go 中使用 `NewFory(true)`。
-
-## 社区与支持
-
-### 获取帮助
-
-- **Slack**:加入我们的 [Slack
工作区](https://join.slack.com/t/fory-project/shared_invite/zt-36g0qouzm-kcQSvV_dtfbtBKHRwT5gsw)参与社区讨论
-- **Twitter/X**:关注 [@ApacheFory](https://x.com/ApacheFory) 获取更新和公告
-- **GitHub Issues**:在 [apache/fory](https://github.com/apache/fory/issues)
报告错误和请求功能
-- **邮件列表**:订阅 Apache Fory 邮件列表参与开发讨论
-
-### 贡献
-
-我们欢迎贡献!请阅读我们的[贡献指南](https://github.com/apache/fory/blob/main/CONTRIBUTING.md)开始。
-
-**贡献方式**:
-
-- 报告错误和问题
-- 提出新功能
-- 改进文档
-- 提交 Pull Request
-- 添加测试用例
-- 分享基准测试
-
-详见[开发指南](../community/DEVELOPMENT.md)了解构建说明和开发工作流程。
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.0/introduction/overview.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.0/introduction/overview.md
index 11a0117912..929aa34ed4 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.0/introduction/overview.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.0/introduction/overview.md
@@ -4,11 +4,6 @@ title: 概述
sidebar_position: 1
---
-<div class="themed-logo">
- <img width="65%" alt="Apache Fory logo" src="/img/fory-logo-dark.png"
class="themed-logo-dark"/>
- <img width="65%" alt="Apache Fory logo" src="/img/fory-logo-light.png"
class="themed-logo-light"/>
-</div>
-
**Apache Fory™** 是一个高性能多语言序列化框架,面向原生对象序列化和跨语言二进制编解码,支持 Schema IDL、对象引用、Schema
演进、Row Format 随机访问与零拷贝读取。
Fory 面向跨语言、跨运行时的紧凑高吞吐序列化而构建。它可以直接处理应用中的对象;当需要稳定契约时,也可以使用共享
Schema;同时保留对象图中的共享引用、循环引用和多态运行时类型等语义。
@@ -105,84 +100,3 @@ Fory 让热点路径保持高速,同时不要求所有运行时采用相同实
- **生成式和静态序列化器**:其他运行时在合适场景下使用生成式或静态序列化器。
- **零拷贝路径**:行格式和带外 buffer 可避免大值的不必要复制。
- **元数据共享**:复用或打包重复类型信息,降低序列化开销。
-
-### 生产就绪
-
-企业级安全性和兼容性:
-
-- **类注册**:基于白名单的反序列化控制(默认启用)
-- **深度限制**:防止递归对象图攻击
-- **可配置策略**:自定义类检查器和反序列化策略
-- **平台支持**:Java 8-24、GraalVM 原生镜像、多操作系统平台
-
-## 协议
-
-Apache Fory™ 实现了针对不同场景优化的多个二进制协议:
-
-| 协议 | 使用场景
| 核心特性 |
-| ---------------------------------------------------------------- |
----------------- | --------------------------------- |
-| **[跨语言序列化](../specification/xlang_serialization_spec.md)** | 跨语言对象交换 |
自动序列化、引用、多态 |
-| **[Java 序列化](../specification/java_serialization_spec.md)** | 高性能 Java 专用
| Java 原生对象图、JDK 钩子、优化运行时 |
-| **[行格式](../specification/row_format_spec.md)** | 分析和数据处理 |
零拷贝随机访问、Arrow 兼容 |
-| **Python 原生** | Python
专用序列化 | Pickle/cloudpickle 替代,性能更好 |
-
-所有协议共享相同的优化代码库,一个协议的改进可以惠及其他协议。
-
-## 文档
-
-### 用户指南
-
-| 指南 | 描述 | 源文件
| 网站
|
-| ---------------- | ----------------------- |
-------------------------------------------------------------------------------------
| -------------------------------------- |
-| **Java 序列化** | Java 序列化综合指南 | [Java
指南](https://github.com/apache/fory/blob/main/docs/guide/java/) |
[查看](../guide/java) |
-| **跨语言序列化** | 多语言对象交换 | [Xlang
指南](https://github.com/apache/fory/blob/main/docs/guide/xlang/) |
[查看](../guide/xlang) |
-| **行格式** | 零拷贝随机访问格式 | [Java
行格式](https://github.com/apache/fory/blob/main/docs/guide/java/row-format.md) |
[查看](../guide/java/row-format.md) |
-| **Python** | Python 特定功能和用法 | [Python
指南](https://github.com/apache/fory/blob/main/docs/guide/python/) |
[查看](../guide/python) |
-| **Rust** | Rust 实现和模式 | [Rust
指南](https://github.com/apache/fory/blob/main/docs/guide/rust/) |
[查看](../guide/rust) |
-| **Go** | Go 实现和用法 | [Go
指南](https://github.com/apache/fory/blob/main/docs/guide/go/)
| [查看](../guide/go) |
-| **Scala** | Scala 集成和最佳实践 | [Scala
指南](https://github.com/apache/fory/blob/main/docs/guide/scala/) |
[查看](../guide/scala) |
-| **GraalVM** | 原生镜像支持和 AOT 编译 | [GraalVM
支持](https://github.com/apache/fory/blob/main/docs/guide/java/graalvm-support.md)
| [查看](../guide/java/graalvm_support) |
-| **开发** | 构建和贡献 Fory |
[开发指南](https://github.com/apache/fory/blob/main/docs/DEVELOPMENT.md)
| [查看](../community/DEVELOPMENT.md) |
-
-### 协议规范
-
-| 规范 | 描述 | 源文件
| 网站
|
-| ---------------- | ------------------ |
----------------------------------------------------------------------------------------------------------------------
| ------------------------------------------------------- |
-| **跨语言序列化** | 跨语言二进制协议 |
[xlang_serialization_spec.md](https://github.com/apache/fory/blob/main/docs/specification/xlang_serialization_spec.md)
| [查看](../specification/xlang_serialization_spec.md) |
-| **Java 序列化** | Java 优化协议 |
[java_serialization_spec.md](https://github.com/apache/fory/blob/main/docs/specification/java_serialization_spec.md)
| [查看](../specification/java_serialization_spec.md) |
-| **行格式** | 基于行的二进制格式 |
[row_format_spec.md](https://github.com/apache/fory/blob/main/docs/specification/row_format_spec.md)
| [查看](../specification/row_format_spec.md) |
-| **类型映射** | 跨语言类型转换 |
[xlang_type_mapping.md](https://github.com/apache/fory/blob/main/docs/specification/xlang_type_mapping.md)
| [查看](../specification/xlang_type_mapping.md) |
-
-## 兼容性
-
-### Schema 兼容性
-
-Apache Fory™ 支持 **Java、Python、Rust 和 Golang** 的类 Schema 向前/向后兼容,支持生产系统中的无缝
Schema 演进,无需跨所有服务协调升级。Fory 提供两种 Schema 兼容性模式:
-
-1. **Schema 一致模式(默认)**:假设序列化和反序列化端之间的类 Schema
相同。此模式提供最小的序列化开销、最小的数据大小和最快的性能:适用于稳定的 Schema 或受控环境。
-
-2. **兼容模式**:支持独立的 Schema 演进,具有向前和向后兼容性。此模式支持字段添加/删除、有限的类型演进和优雅处理 Schema 不匹配。在
Java 中使用 `withCompatibleMode(CompatibleMode.COMPATIBLE)` 启用,在 Python 中使用
`compatible=True`,在 Rust 中使用 `compatible_mode(true)`,在 Go 中使用 `NewFory(true)`。
-
-## 社区与支持
-
-### 获取帮助
-
-- **Slack**:加入我们的 [Slack
工作区](https://join.slack.com/t/fory-project/shared_invite/zt-36g0qouzm-kcQSvV_dtfbtBKHRwT5gsw)参与社区讨论
-- **Twitter/X**:关注 [@ApacheFory](https://x.com/ApacheFory) 获取更新和公告
-- **GitHub Issues**:在 [apache/fory](https://github.com/apache/fory/issues)
报告错误和请求功能
-- **邮件列表**:订阅 Apache Fory 邮件列表参与开发讨论
-
-### 贡献
-
-我们欢迎贡献!请阅读我们的[贡献指南](https://github.com/apache/fory/blob/main/CONTRIBUTING.md)开始。
-
-**贡献方式**:
-
-- 报告错误和问题
-- 提出新功能
-- 改进文档
-- 提交 Pull Request
-- 添加测试用例
-- 分享基准测试
-
-详见[开发指南](../community/DEVELOPMENT.md)了解构建说明和开发工作流程。
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]