写点什么

《使用 Gin 框架构建分布式应用》阅读笔记:p101-p107

作者:codists
  • 2024-10-21
    广东
  • 本文字数:881 字

    阅读完需:约 3 分钟

《用 Gin 框架构建分布式应用》学习第 7 天,p101-p107 总结,总计 7 页。

一、技术总结

1.StatusBadRequest vs StatusInternalServerError

写代码的时候有一个问题,什么时候使用 StatusBadRequest(400 错误),什么时候使用 StatusInternalServerError(500 错误)?


400 用于客户端侧的错误(如:传递的参数数量、名称不对),500 用于服务端的错误(如:除数是零)。是参考资料:https://developer.mozilla.org/en-US/docs/Web/HTTP/Status

2.cache(缓存)

使用缓存的直接原因是为了加快查询速度,从而提升用户体验感。所以就在代码中引入了 Redis,因为 Redis 是内存型数据库( in-memory database,使用的是 RAM), 而 MySQL 和 MongoDB 查询使用的是 disk。in-memory 只是 Redis 快的其中一个原因,其它原因未见作者提及。

(1)cache hit(缓存命中)

(2)cache miss(缓存未命中)

二、英语总结

1.metrics

p106, That is why response time is one of the most important metrics to evaluate when developing a RESTful API.


(1)metric: me-("to measure")。c.衡量标准。


刚开始晃眼一看以为是“矩阵(matrix)”的意思。

2.tremendous

p106, Let's imagine that we have a tremendous number of recipes in our MongoDB database.


(1)tremere: to tremble/to shake. Tremere is related to the idea of shaking with fear,这是最开始的意思, 因为害怕等而引起的颤抖。


(2)Hyperbolic or intensive sense of "extraordinarily great or good, immense, such as excites astonishment," is attested from 1812, paralleling semantic changes in terrific, terrible, dreadful, awful, etc。随着不断的发展,后面又有多出了 Hyperbolic or intensive sense(夸张的,或者强烈的意思),表示“巨大的,可怕的”。

三、其它

今天没有什么想说的。

四、参考资料

1. 编程

(1) Mohamed Labouardy,《Building Distributed Applications in Gin》:https://book.douban.com/subject/35610349

2. 英语

(1) Etymology Dictionary:https://www.etymonline.com


(2) Cambridge Dictionary:https://dictionary.cambridge.org


欢迎搜索及关注:编程人(a_codists)

用户头像

codists

关注

公众号:编程人 2021-01-14 加入

Life is short, You need Python

评论

发布
暂无评论
《使用Gin框架构建分布式应用》阅读笔记:p101-p107_Go_codists_InfoQ写作社区