Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion content/en/blog/releases/Kitex/release-v0_11_0.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ description: >
1. **Frugal ARM Optimization**: Frugal v0.2.0 now supports a new implement by reflection
2. **Kitex Tool Improvement**: Kitex Tool provide a new param `-rapid` to integrates Thriftgo and there's a slightly improved speed.
3. **Generating Multiple Handlers for Multiple Services**:Since this version, Kitex tool provide each service with independent handler file and register them into server,for more details: [Generating Multiple Handlers for Multiple Services](/docs/kitex/tutorials/advanced-feature/multi_service/multi_handler/)
4. **Generic Streaming for JSON [on trial]**:JSON generic streaming has now support streaming (client only),currently we're doing some optimization, you can have a try by following this doc: [Generic Streaming](/docs/kitex/tutorials/advanced-feature/generic-call/generic_streaming/)


### Others
Expand Down
6 changes: 0 additions & 6 deletions content/en/blog/releases/Kitex/release-v0_12_0.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,6 @@ Future version plans: Kitex will remove Apache products by default. User guide:
Added support for a graceful shutdown feature to address upstream errors caused by service upgrades or updates.

For usage: [gRPC Streaming Graceful Shutdown](/docs/kitex/tutorials/basic-feature/protocol/streaming/grpc/graceful_shutdown/)

3. **JSON Generic Call Supports gRPC Streaming**

JSON generic calls now support gRPC Streaming interfaces (client-side only). This is the official release after trial in v0.10.0.

For usage: [User Guide to Generic Call for Streaming](/docs/kitex/tutorials/advanced-feature/generic-call/generic_streaming)

### Experience Optimization
1. **gRPC Streaming Log Optimization**
Expand Down
1 change: 1 addition & 0 deletions content/en/docs/hertz/tutorials/basic-feature/sse.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ func HandleSSE(ctx context.Context, resp *protocol.Response) error {
```

### Example Codes

- [SSE](https://github.com/cloudwego/hertz-examples/tree/main/sse) : Example of hertz using SSE protocol

### Common Issues
Expand Down
1,345 changes: 762 additions & 583 deletions content/en/docs/kitex/Tutorials/advanced-feature/generic-call/basic_usage.md

Large diffs are not rendered by default.

This file was deleted.

1 change: 0 additions & 1 deletion content/zh/blog/releases/Kitex/release-v0_11_0.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ description: >
1. **Frugal ARM 性能优化**:Frugal 支持了基于反射的高性能编解码,升级到 Frugal v0.2.0 即可
2. **Kitex Tool 代码生成提速**:提供了 `-rapid` 参数,可以无需安装 Thriftgo ,且速度略有提高。下个版本之后将作为默认行为。
3. **多 Service 多 Handler 生成**:从该版本开始,Kitex Tool 支持为每个 service 生成 handler 并统一注册到 server,详见 [多 Service 多 Handler 生成](/zh/docs/kitex/tutorials/advanced-feature/multi_service/multi_handler/)
4. **Streaming JSON 泛化[试用阶段]**:JSON 泛化调用支持了 streaming 流式接口(仅限 client),目前正在持续优化中,并未正式发布,有兴趣可以试用,详见 [Generic Streaming](/docs/kitex/tutorials/advanced-feature/generic-call/generic_streaming/)

### 其他
1. 支持版本 Go 1.18~1.23,最低支持变为 Go 1.18,如果你的 Go 版本过低,编译时会有提示:`note: module requires Go 1.18`
Expand Down
6 changes: 0 additions & 6 deletions content/zh/blog/releases/Kitex/release-v0_12_0.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,6 @@ description: >
支持了优雅退出功能,用于解决因为服务升级/更新而导致的上游报错问题。

用户文档:[gRPC Streaming 优雅退出](/zh/docs/kitex/tutorials/basic-feature/protocol/streaming/grpc/graceful_shutdown/)

3. **JSON 泛化调用支持 gRPC Streaming**

JSON 泛化调用支持 gRPC Streaming 流式接口(仅限 client),经过 v0.10.0 试用,正式发布。

用户文档:[User Guide to Generic Call for Streaming](/docs/kitex/tutorials/advanced-feature/generic-call/generic_streaming)

### 体验优化
1. **gRPC Streaming 日志优化**
Expand Down
1 change: 1 addition & 0 deletions content/zh/docs/hertz/tutorials/basic-feature/sse.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ func HandleSSE(ctx context.Context, resp *protocol.Response) error {
```

### 代码示例

- [SSE](https://github.com/cloudwego/hertz-examples/tree/main/sse) : hertz SSE 代码示例

### 常见问题
Expand Down
Loading