In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-12 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article focuses on "how to optimize go performance", interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how to optimize go performance.
Record the optimization of the core processing logic
Because the range of decimal numbers for virtual ip is 168493058, 168558590, we change its type from int to uint64, not to uint32 for good calculation; secondly, the string concatenation method uses string.Join, and finally, we use arrays instead of slices.
The virtual IP segment corresponding to the string slice / / using the slice storage string join method is 10.11.0.2 10.11.255.253 the uint64const VIPMIN corresponding to the minimum and maximum allocable virtual IP, VIPMAX uint64 = 168493058, 168558590var fieldMaps = [4] uint64 {24,16,8,0} / / OctToVipArray array func OctToVipArray (vipOct uint64) (addr string) {if vipOct
< VIPMIN && vipOct >VIPMAX {log.Fatal ("pass in error decimal integers Check if all virtual IP are assigned ") return} else {var vips [4] string for index, value: = range fieldMaps {vips [index] = strconv.FormatUint (vipOct > > value&0xff, 10)} return strings.Join (vips [:] ".")}} use array storage string join method to concatenate string array / / octToVipSlice slice func OctToVipSlice (vipOct uint64) (addr string) {if vipOct
< VIPMIN && vipOct >VIPMAX {log.Fatal ("pass in error decimal integers Check if all virtual IP are assigned ") return} else {var vips [] string for _, value: = range fieldMaps {vips = append (vips, strconv.FormatUint (vipOct > > value&0xff, 10))} return strings.Join (vips,". ")}} benchmark
Test function
/ / benchmark func BenchmarkA (b * testing.B) {b.ResetTimer () for index: = uint64 (168507432); index
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.