Conversation
Member
讲真我觉得用不到 *ray buf 那些函数的话直接 make 就行,Golang 自己有 pool 说不定还更快,又不是每次都要向系统申请内存 |
Member
Author
|
小部分使用没必要 大块还是有必要的 new是申请全新的 池子可以重用 之前用过的缓存可以拿来用 |
Member
|
把 REALITY 里的 go 版本号和 dependencies(除了 indirect)一起升级了放这个 PR 里吧 |
Member
这在以后会是常态,REALITY 方面也支持 X25519MLKEM768 和 ML-DSA-65 了,因为 uTLS 也支持新指纹了,以及 ECH,然后很快 VLESS 推出抗量子加密、Vision Seed、Mux 增强、Switch。。。接下来的几年可能没啥大变化了,重心转向优化 core |
Member
|
|
Member
Author
这得等reality 真的sync upstream吧( |
Jolymmiles
pushed a commit
to Jolymmiles/Xray-core
that referenced
this pull request
Aug 15, 2025
* Try to update to go1.25 * Remove unsafe usage
maoxikun
pushed a commit
to maoxikun/Xray-core
that referenced
this pull request
Aug 23, 2025
* Try to update to go1.25 * Remove unsafe usage (cherry picked from commit 5a8e9c2)
This was referenced Aug 31, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
什么都没发生 好像不像前几次那么艰难
扫了一下更新日志 移除了tls ping使用unsafe获取未导出的密钥交换算法 因为现在connectionstate提供了
看有人说实验性GC的事 它不会被包含在内(因为需要构建时GOEXPERIMENT) 而且它不会减少内存占用 一段内存该不该回收在GC开始时就确定了 能降低的CPU占用也有限因为这个算法优化的是回收碎片内存 xray的大头buffer都是new出来的整块内存 而且是有一个pool管理的(