Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: optmize release log for kitex v0.11.0 #1150

Merged
merged 3 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions content/en/blog/releases/Kitex/release-v0_11_0.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ description: >
### Feature optimization
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](https://www.cloudwego.io/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](https://www.cloudwego.io/docs/kitex/tutorials/advanced-feature/generic-call/generic_streaming/)


### Others
1. Support Go 1.18~1.23. Minimum support for Golang 1.18,if your golang version is lower than 1.18, you'll see `note: module requires Go 1.18` when you compile.
Expand Down
2 changes: 2 additions & 0 deletions content/zh/blog/releases/Kitex/release-v0_11_0.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ description: >
### 功能优化
1. **Frugal ARM 性能优化**:Frugal 支持了基于反射的高性能编解码,升级到 Frugal v0.2.0 即可
2. **Kitex Tool 代码生成提速**:提供了 `-rapid` 参数,可以无需安装 Thriftgo ,且速度略有提高。下个版本之后将作为默认行为。
3. **多 Service 多 Handler 生成**:从该版本开始,Kitex Tool 支持为每个 service 生成 handler 并统一注册到 server,详见 [多 Service 多 Handler 生成](https://www.cloudwego.io/zh/docs/kitex/tutorials/advanced-feature/multi_service/multi_handler/)
4. **Streaming JSON 泛化[试用阶段]**:JSON 泛化调用支持了 streaming 流式接口(仅限 client),目前正在持续优化中,并未正式发布,有兴趣可以试用,详见 [Generic Streaming](https://www.cloudwego.io/docs/kitex/tutorials/advanced-feature/generic-call/generic_streaming/)
GuangmingLuo marked this conversation as resolved.
Show resolved Hide resolved

### 其他
1. 支持版本 Go 1.18~1.23,最低支持变为 Go 1.18,如果你的 Go 版本过低,编译时会有提示:`note: module requires Go 1.18`
Expand Down
Loading