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
Go言語でCQRS+ESの アプリを作ってみた
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Kizuku
March 14, 2025
0
650
Go言語でCQRS+ESの アプリを作ってみた
Kizuku
March 14, 2025
Tweet
Share
More Decks by Kizuku
See All by Kizuku
学生こそ ISUCONに出よう!
kizuku
1
110
WebTransportの パッケージを作った話
kizuku
0
93
きのこカンファレンス開催予告! - エンジニアがこの先生きのこるには -
kizuku
0
190
WebSocketで バイナリを扱う方法 + OSTやりたくない?
kizuku
1
67
WebTransportは未来の技術?
kizuku
2
2.2k
Featured
See All Featured
Effective software design: The role of men in debugging patriarchy in IT @ Voxxed Days AMS
baasie
0
250
A Tale of Four Properties
chriscoyier
163
24k
Building an army of robots
kneath
306
46k
Design of three-dimensional binary manipulators for pick-and-place task avoiding obstacles (IECON2024)
konakalab
0
380
Darren the Foodie - Storyboard
khoart
PRO
3
2.8k
Avoiding the “Bad Training, Faster” Trap in the Age of AI
tmiket
0
100
Agile that works and the tools we love
rasmusluckow
331
21k
State of Search Keynote: SEO is Dead Long Live SEO
ryanjones
0
150
How Software Deployment tools have changed in the past 20 years
geshan
0
32k
Optimizing for Happiness
mojombo
378
71k
Between Models and Reality
mayunak
2
230
Rebuilding a faster, lazier Slack
samanthasiow
85
9.4k
Transcript
Go言語でCQRS+ESの アプリを作ってみた イベントソーシング・CQRS勉強会 #1 Kizuku
Kizuku 九州工業大学 学部4年 →先日、上京 好きな言語: Go X: @Kizuku_tech 趣味: イベント・カンファレンス
参加/運営 自己紹介
今年の正月に CQRS+ESでアプリを作った
そこまで踏み込んだ 内容ではないです 🙇♂️
話すこと 実装ベースの説明 Goの実装で便利だったライブラリ Goの実装で楽だったこと/辛かったこと 話さないこと アプリの詳細 詳しい話(是非懇親会で!)
イベントストーミング Figjamを用いた 参考:イベントストーミング入門(なるセミ) https://youtu.be/jC9lE4YqgyY
技術構成 EventStore DynamoDB ReadModel TiDB GraphQL Next.js
使用ライブラリ event-store-adapter-go https://github.com/j5ik2o/event-store-adapter-go アクターシステムを用いずに Event Sourcingを行うライブラリ https://speakerdeck.com/j5ik2o/akutasisutemunilai -razuevent-sourcingsurufang-fa-nituite
Goの実装で楽だったこと Protocol Buffersとの親和性が高い lambdaの関連ライブラリが多く使いやすい
データのシリアライズ Protocol Buffersを用いてシリアライズ Goもprotobufも開発元が同じで親和性が高 い oneofフィールドがイベントのデータの取り 扱いと相性がいい
protobuf
データのシリアライズ bufを用いてコード生成 protoc-gen-goのプラグインを使用
Goの実装で辛かったこと 他言語と比べるとパターンマッチがやや貧弱 やや冗長な書き方が多くコードが長くなりが ち
Goでのパターンマッチング type switchで動的な型に応じた処理ができる
None
Goでのパターンマッチング Rustなどの言語のパターンマッチ機能と比べ るとGoはシンプルでわかりやすい 厳密性はないため、抜け漏れは発生しやすい
まとめ CQRS+ES 難易度が高いように見えるが、(簡 単な実装であれば)案外手は動く 難しい部分に関してはいろんな人がライブラ リを作ってくれている 好きな言語でトライしてみる!!