https://github.com/parkgang/http-cache-server-with-go
http cache server를 구현해보자
https://github.com/parkgang/http-cache-server-with-go
cache go golang http parkgang-blog-assets
Last synced: 3 months ago
JSON representation
http cache server를 구현해보자
- Host: GitHub
- URL: https://github.com/parkgang/http-cache-server-with-go
- Owner: parkgang
- Created: 2021-11-15T14:31:22.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-17T05:23:34.000Z (over 2 years ago)
- Last Synced: 2024-06-21T16:52:00.910Z (almost 2 years ago)
- Topics: cache, go, golang, http, parkgang-blog-assets
- Language: Go
- Homepage: https://parkgang.github.io/blog/2021/11/17/lets-create-an-http-cache-server-with-golang/
- Size: 1.41 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# http-cache-server-with-go
> http 캐시 서버를 구현해보자
[Learning HTTP caching in Go](https://www.sanarias.com/blog/115LearningHTTPcachinginGo) 를 참고하여 진행되었습니다.
`HTTP` 의 `etag` 매커니즘과 동시에 캐시서버의 동작이 궁금해서 직접 구현하게 되었습니다.
## Start
`go run main.go` 으로 서버를 실행한 후 [http://localhost:8080](http://localhost:8080) 로 들어가서 요청을 날려보시면 됩니다.
개발자 도구에서 네트워크 탭을 열고 한번 확인해보세요!