Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Golang Memory usage(Stack vs Heap)
Search
Deepu K Sasidharan
February 12, 2020
Technology
1
73k
Golang Memory usage(Stack vs Heap)
Deepu K Sasidharan
February 12, 2020
Tweet
Share
More Decks by Deepu K Sasidharan
See All by Deepu K Sasidharan
Demystifying OAuth and OIDC: JFokus
deepu105
0
60
Mastering Kubernetes Security from Containers to Cluster Fortresses
deepu105
1
33
Go containerless on Kubernetes
deepu105
1
62
A Passwordless Future! Passkeys for Java Developers
deepu105
0
82
Go containerless on Kubernetes with WebAssembly and Rust
deepu105
0
38
An illustrated crash course for OAuth and OIDC
deepu105
1
120
A passwordless future! Passkeys for Spring Developers
deepu105
0
460
Secure Spring Boot Microservices with OAuth and OIDC
deepu105
1
130
A passwordless future! Passkeys for Java Developers
deepu105
0
180
Other Decks in Technology
See All in Technology
抽象化をするということ - 具体と抽象の往復を身につける / Abstraction and concretization
soudai
4
730
Developers Summit 2025 浅野卓也(13-B-7 LegalOn Technologies)
legalontechnologies
PRO
0
660
N=1から解き明かすAWS ソリューションアーキテクトの魅力
kiiwami
0
130
目の前の仕事と向き合うことで成長できる - 仕事とスキルを広げる / Every little bit counts
soudai
24
7k
PL900試験から学ぶ Power Platform 基礎知識講座
kumikeyy
0
130
管理者しか知らないOutlookの裏側のAIを覗く#AzureTravelers
hirotomotaguchi
2
350
プロダクトエンジニア構想を立ち上げ、プロダクト志向な組織への成長を続けている話 / grow into a product-oriented organization
hiro_torii
0
110
Developer Summit 2025 [14-D-1] Yuki Hattori
yuhattor
19
6.1k
表現を育てる
kiyou77
1
210
モノレポ開発のエラー、誰が見る?Datadog で実現する適切なトリアージとエスカレーション
biwashi
6
800
Cloud Spanner 導入で実現した快適な開発と運用について
colopl
1
550
個人開発から公式機能へ: PlaywrightとRailsをつなげた3年の軌跡
yusukeiwaki
11
3k
Featured
See All Featured
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
21
2.5k
The World Runs on Bad Software
bkeepers
PRO
67
11k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3k
The Language of Interfaces
destraynor
156
24k
Producing Creativity
orderedlist
PRO
344
39k
Typedesign – Prime Four
hannesfritz
40
2.5k
Embracing the Ebb and Flow
colly
84
4.6k
RailsConf 2023
tenderlove
29
1k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
7k
Fireside Chat
paigeccino
34
3.2k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
45
9.4k
What’s in a name? Adding method to the madness
productmarketing
PRO
22
3.3k
Transcript
Go Memory usage Heap Goroutine stack P1 mcache main frame
BONUS_PERCENTAGE 10
Go Memory usage Heap Goroutine stack P1 mcache main frame
john BONUS_PERCENTAGE 10 Employee:new name “John” salary 5000 sales 5 bonus 0
Go Memory usage Heap Goroutine stack P1 mcache main frame
john BONUS_PERCENTAGE 10
Go Memory usage Heap Goroutine stack P1 mcache main frame
john BONUS_PERCENTAGE 10 findEmployeeBonus salary 5000 noOfSales 5
Go Memory usage Heap Goroutine stack P1 mcache main frame
john BONUS_PERCENTAGE 10 findEmployeeBonus salary 5000 noOfSales 5 bonusPercentage 0
Go Memory usage Heap Goroutine stack P1 mcache main frame
john BONUS_PERCENTAGE 10 findEmployeeBonus salary 5000 noOfSales 5 bonusPercentage 0 getBonusPercentage salary 5000
Go Memory usage Heap Goroutine stack P1 mcache main frame
john BONUS_PERCENTAGE 10 findEmployeeBonus salary 5000 noOfSales 5 bonusPercentage 0 getBonusPercentage salary 5000 percentage 500
Go Memory usage Heap Goroutine stack P1 mcache main frame
john BONUS_PERCENTAGE 10 findEmployeeBonus salary 5000 noOfSales 5 bonusPercentage 0 getBonusPercentage salary 5000 percentage 500 return 500
Go Memory usage Heap Goroutine stack P1 mcache main frame
john BONUS_PERCENTAGE 10 findEmployeeBonus salary 5000 noOfSales 5 bonusPercentage 500
Go Memory usage Heap Goroutine stack P1 mcache main frame
john BONUS_PERCENTAGE 10 findEmployeeBonus salary 5000 noOfSales 5 bonusPercentage 500 bonus 2500
Go Memory usage Heap Goroutine stack P1 mcache main frame
john BONUS_PERCENTAGE 10 findEmployeeBonus salary 5000 noOfSales 5 bonusPercentage 500 bonus 2500 return 2500
Go Memory usage Heap Goroutine stack P1 mcache main frame
john BONUS_PERCENTAGE 10 mspan Employee name “John” salary 5000 sales 5 bonus 2500
Go Memory usage Heap Goroutine stack P1 mcache main frame
john BONUS_PERCENTAGE 10 mspan Employee name “John” salary 5000 sales 5 bonus 2500