Go HowTo 101
Go Practices 101
Go Agg 101
테마: 다크/라이트
현재 3권의 신간들인 Go Optimizations 101,
Go Details & Tips 101
과 Go Generics 101이 출간되어 있습니다.
Leanpub 서점에서 번들을 모두 구입하시는 방법이 비용 대비 효율이 가장 좋습니다.
Go에 대한 많은 정보들과 Go 101 책들의 최신 소식을 얻으시려면 Go 101 트위터 계정인
@Go100and1을
팔로잉 해주세요.
Acknowledgments
Firstly, thanks to the whole Go community. An active and responsive community guarantees this book is finished in time.
Specially, I want to give thanks to the following people who helped me understand some implementation details in the official standard compiler and runtime: Keith Randall, Ian Lance Taylor, Axel Wagner, Cuong Manh Le, Michael Pratt, Jan Mercl, Matthew Dempsky, Martin Möhrmann, etc. I'm sorry if I forgot mentioning somebody in above lists. There are so many kind and creative gophers in the Go community that I must have missed out on someone.
I also would like to thank all gophers who ever made influences on the Go 101 book, be it directly or indirectly, intentionally or unintentionally.
Thanks to Olexandr Shalakhin for the permission to use one of the wonderful gopher icon designs as the cover image. And thanks to Renee French for designing the lovely gopher cartoon character.
Thanks to the authors of the following open source software and libraries used in building this book:
Thanks the gophers who ever reported mistakes in this book or made corrections for this book:
yingzewen,
ivanburak,
cortes-,
skeeto@reddit,
Yang Yang,
DashJay,
etc.
이 책의 디지털 버전은 아래와 같은 곳을 통해서 구매할 수 있습니다.
Go 101의 저자인 Tapir는 2016년 7월부터 Go 101 시리즈 책들을 집필하고 go101.org 웹사이트를 유지 관리하고 있습니다.
새로운 콘텐츠는 책과 웹사이트에 수시로 추가될 예정입니다.
Tapir는 인디 게임 개발자이기도 합니다.
Tapir의 게임을 플레이하여 Go 101을 지원할 수도 있습니다.
(안드로이드와 아이폰/아이패드용):
페이팔을 통한 개인 기부도 환영합니다.
색인:
- Acknowledgments
- About Go Optimizations 101
- Value Parts and Value Sizes (available in the paid ebooks)
- value/type sizes
- memory alignments
- struct padding
- avoid larger copy costs
- Memory Allocations
- Stack and Escape Analysis (available in the paid ebooks)
- escape analysis
- how to control value allocation places
- stacks growth and shrinkage
- how to reduce stack grow times
- Garbage Collection (available in the paid ebooks)
- GC pacer
- how to reduce GC pressure
- control GC frequency
- Pointers
- Structs (available in the paid ebooks)
- Arrays and Slices (available in the paid ebooks)
- String and Byte Slices (available in the paid ebooks)
- BCE (Bound Check Eliminate) (available in the paid ebooks)
- the cases BCE works for
- the cases BCE doesn't work for
- the cases BCE works for when given hints
- Maps
- Channels (available in the paid ebooks)
- Functions (available in the paid ebooks)
- how to make a function inline-able
- how to make a function not inline-able
- pointer parameters/results vs. non-pointer ones
- named results vs. anonymous ones
- 10+ facts/suggestions
- Interfaces (available in the paid ebooks)
- value boxing costs
- 3+ facts/suggestions