https://github.com/bariseser/go-concurrent-sample
This sample code explain that how to use go concurrency feature with mysql
https://github.com/bariseser/go-concurrent-sample
golang golang-concurency golang-library golang-sample golang-tutorial
Last synced: 4 months ago
JSON representation
This sample code explain that how to use go concurrency feature with mysql
- Host: GitHub
- URL: https://github.com/bariseser/go-concurrent-sample
- Owner: bariseser
- License: mit
- Created: 2019-07-21T11:59:17.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-21T12:21:21.000Z (almost 6 years ago)
- Last Synced: 2025-01-18T04:26:32.738Z (6 months ago)
- Topics: golang, golang-concurency, golang-library, golang-sample, golang-tutorial
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
### Go Concurrency Sample
This sample code explain that how to use go concurrency feature with mysql
#### Important Notice
Please make the necessary changes to the db/db.go file before running the application
db/db.go
```
line: 10 db, err := sql.Open("mysql", "root:12345@tcp(127.0.0.1)/dbname")
```#### How to use it
```
go run main.go
```