You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Double-Check Locking is the standard process for preventing concurrent creation. Creation only occurs once when the connection is established. Reducing one in-memory check won't provide any significant performance improvement.
Before Creating the Enhancement Request
Summary
createChannelAsync方法的一开始 ,执行了get操作
而createChannelAsync方法的调用方getAndCreateChannelAsync方法中,已经执行过同样的get操作了。这段 get 操作不应该在 createChannelAsync方法中进行,因为这个方法的命名是 createChannelAsync。
Motivation
Describe the Solution You'd Like
删除下面的代码
并在该方法的另一处调用方getAndCreateNameserverChannelAsync中,调用之前加上get操作
Describe Alternatives You've Considered
无
Additional Context
No response
The text was updated successfully, but these errors were encountered: