Go开发者路线图2019


Go开发者路线图2019

文章插图
 
 
整理 | Rachel责编 | 阿司匹林出品 | AI科技大本营(ID: rgznai100)
Go是google开发的一种静态、强类型、编译型、并发型 , 并具有垃圾回收功能的类C编程语言 。2009以开源项目的形式发布 , 2012年发布1.0稳定版本 , 距今已经十年了 , 其性能类似于JAVA和C++ , 但速度极快 , 适合搭载于web服务器 , 用于高性能分布式系统开发 。
作为热门的编程语言之一 , Go语言吸引了很多关注 。根据TIOBE编程排行榜 , 2016年 , Go语言成为年度最受欢迎的编程语言;2019年 , Go语言的热度不减 , 仍稳居排行榜前20名 。在基于云的服务中 , Go语言因其在编译速度和执行性能上的优越性 , 具有其他编程语言无法比拟的优势 。随着云计算的迅速发展 , 更多基于Go语言的项目正在不断涌现 。
今天 , 营长就为大家推荐了一份来自Github的2019年Go开发者指南 , 帮助大家快速入门Go语言 。
该指南提供了详细的进阶路线图 , 列出了学习Go开发所需的各类知识和技能 , 而且每个知识点也附上啦相应的学习资源 。相信无论是零基础的新手 , 还是对Go语言有一定了解的开发者 , 都能够有所收获 。
Go开发者路线图
Go开发者路线图2019

文章插图
 
 
学习资源整理
 
1、先决条件
1)Go:https://golangbot.com/
2)Dep工具 , Go模组:https://github.com/golang/dep
3)SQL:https://www.w3schools.com/sql/default.asp
2、基本开发技能
1)学习Git , 在GitHub上建立一些仓库 , 与他人分享你的代码:https://www.w3schools.com/sql/default.asp
2)了解HTTP(S)协议 , request方法(GET,POST,PUT,PATCH,DELETE,OPTIONS)
3)不要害怕使用Google——Google搜索的力量:http://www.powersearchingwithgoogle.com/
4)看一些和数据结构及算法有关的书
5)学习关于认证的基础实现
6)学习面向对象原则
3、命令行工具
1)cobra:https://github.com/spf13/cobra
2)urfave/cil:https://github.com/urfave/cli
4、网络框架/路由
1)Echo:https://github.com/labstack/echo
2)Beego:https://github.com/astaxie/beego
3)Gin:https://github.com/gin-gonic/gin
4)Revel:https://github.com/revel/revel
5)Chi:https://github.com/go-chi/chi
5、数据库
1)关系型
SQLServer:https://www.microsoft.com/en-us/sql-server/sql-server-2017
PostgreSQL:https://www.postgresql.org/
【Go开发者路线图2019】MariaDB:https://mariadb.org/
MySQL:https://www.mysql.com/
2)云数据库
CosmosDB:https://docs.microsoft.com/en-us/azure/cosmos-db
DynamoDB:https://aws.amazon.com/dynamodb/
3)搜索引擎
ElasticSearch:https://www.elastic.co/
Solr:http://lucene.Apache.org/solr/
Sphinx:http://sphinxsearch.com/
4)NoSQL
MongoDB:https://www.mongodb.com/
redis:https://redis.io/
ApacheCassandra:http://cassandra.apache.org/
LiteDB:https://github.com/mbdavid/LiteDB
RavenDB:https://github.com/ravendb/ravendb
CouchDB:http://couchdb.apache.org/
6、对象关系的映射框架
Gorm:https://github.com/jinzhu/gorm
Xorm:https://github.com/go-xorm/xorm
7、高速缓存
GCache:https://github.com/bluele/gcache
分布式缓存
Go-Redis:https://github.com/go-redis/redis
GoMemcached:https://github.com/bradfitz/gomemcache
8、日志
1)日志框架
Zap:https://github.com/uber-go/zap
ZeroLog:https://github.com/rs/zerolog
Logrus:https://github.com/sirupsen/logrus
2)日志管理系统
Sentry.io:http://sentry.io/
Loggly.com:https://loggly.com/
9、实时通讯
Socket.IO:https://socket.io/
10、客户端
1)REST
Gentelman:https://github.com/h2non/gentleman
GRequests:https://github.com/kennethreitz/grequests
heimdall:https://github.com/heimdal/heimdal
2)GraphQL:https://graphql.org/
11、最好知道的库
Validator:https://github.com/chriso/validator.js/
Glow:https://github.com/pytorch/glow
GJson:https://github.com/tidwall/gjson
Authboss:https://github.com/volatiletech/authboss
Go-Underscore:https://github.com/ahl5esoft/golang-underscore


推荐阅读