README 中文版本
What can be accomplished in 7 days? A gin-like web framework? A distributed cache like groupcache? Or a simple Python interpreter? Hope this repo can give you the answer.
Web Framework - Gee
- Day 1 - http.Handler Interface Basic Code
- Day 2 - Design a Flexiable Context Code
- Day 3 - Router with Trie-Tree Algorithm Code
- Day 4 - Group Control Code
- Day 5 - Middleware Mechanism Code
- Day 6 - Embeded Template Support Code
- Day 7 - Panic Recover & Make it Robust Code
Distributed Cache - GeeCache
GeeCache is a groupcache-like distributed cache
- Day 1 - LRU (Least Recently Used) Caching Strategy Code
- Day 2 - Single Machine Concurrent Cache Code
- Day 3 - Launch a HTTP Server Code
- Day 4 - Consistent Hash Algorithm Code
- Day 5 - Communication between Distributed Nodes Code
- Day 6 - Cache Breakdown & Single Flight | Code
- Day 7 - Use Protobuf as RPC Data Exchange Type | Code
Object Relational Mapping - GeeORM
GeeORM is a gorm-like and xorm-like object relational mapping library
Xorm's desgin is easier to understand than gorm-v1, so the main designs references xorm and some detailed implementions references gorm-v1.
- Day 1 - database/sql Basic | Code
- Day 2 - Object Schame Mapping | Code
- Day 3 - Insert and Query | Code
- Day 4 - Chain, Delete and Update | Code
- Day 5 - Support Hooks | Code
- Day 6 - Support Transaction | Code
- Day 7 - Migrate Database | Code
RPC Framework - GeeRPC
GeeRPC is a net/rpc-like RPC framework
Based on golang standard library net/rpc
, GeeRPC implements more features. eg, protocol exchange, service registration and discovery, load balance, etc.
- Day 1 - Server Message Codec | Code
- Day 2 - Concurrent Client | Code
- Day 3 - Service Register | Code
- Day 4 - Timeout Processing | Code
- Day 5 - Support HTTP Protocol | Code
- Day 6 - Load Balance | Code
- Day 7 - Discovery and Registry | Code