Microservices in Go: Difference between revisions
Jump to navigation
Jump to search
Line 2: | Line 2: | ||
* [https://www.amazon.com/Microservices-Go-Building-scalable-microservices-ebook/dp/B0BHWM674P Microservices with Go: Building scalable and reliable microservices with Go] by Alexander Shuiskov | * [https://www.amazon.com/Microservices-Go-Building-scalable-microservices-ebook/dp/B0BHWM674P Microservices with Go: Building scalable and reliable microservices with Go] by Alexander Shuiskov | ||
=Internal= | =Internal= | ||
* [[Go_Project#Microservice-based_Project_LayoutGo Project]] | |||
* [[Go_Code_Examples|Go Code Examples]] | * [[Go_Code_Examples|Go Code Examples]] | ||
* [[Microservices]] | * [[Microservices]] |
Revision as of 18:56, 14 December 2023
External
- Microservices with Go: Building scalable and reliable microservices with Go by Alexander Shuiskov
Internal
Overview
Working Example
Project Layout
Each of the services metadata
, movie
, rating
contains multiple packages. The entire application is developed as a module.
. ├── README.md ├── go.mod ├── metadata │ ├── cmd │ │ └── main.go │ ├── internal │ │ ├── controller │ │ ├── handler │ │ └── repository │ └── pkg ├── movie │ └── cmd │ └── main.go └── rating └── cmd └── main.go
go mod init go-micros
Service Overview
- API
- Data model
- Business logic
- Database (persistence)
- Service dependencies