Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 days 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-21T12:21:21.000Z (over 5 years ago)
- Last Synced: 2024-06-19T20:56:33.857Z (5 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
```