1. Go 时间

    时间格式化

    2020/01/12 Go 知识点

  2. Go 常用知识点及实例

    时间 https://www.cnblogs.com/followyou/p/12187949.html

    2020/01/12 Go 知识点

  3. Go error

    “ Errors are values ”源⾃于Go语⾔创始⼈之⼀的Rob Pike对error的设计理念。Rob Pike认 为,error和函数的其它返回值地位相等,只是多个返回值的其中之⼀,并⽆任何特殊之处。 因此,对error的处理就如同正常对待⼀个函数的返回值⼀样进⾏。

    2020/01/12 Go 知识点

  4. Go 断言

    断言 golang中的所有程序都实现了interface{}的接口,这意味着,所有的类型如string,int,int64甚至是自定义的struct类型都就此拥有了interface{}的接口,这种做法和java中的Object类型比较类似。 那么在一个数据通过func funcName(interface{})的方式传进来的时候,也就意味着这个参数被自动的转为interface{}的类型。

    2020/01/12 Go 知识点

  5. 抢购架构设计分析【draft】

    表结构

    2019/12/01 架构 技术沉淀

  6. php进程【draft】

    php进程 ```php <?php

    2019/11/22 PHP 知识点

  7. 抓包curl解析

    背景 抓包工具charles抓取的请求curl,是这样: curl -H ':method: POST' -H ':path: /client.action?functionId=signInCouponCenter&clientVersion=8.3.4&build=70302&client=android&d_brand=HUAWEI&d_model=JKM-AL00bxxxxx' -H ':authority: api.m.jd.com' -H ':scheme: https' -H 'cookie:xxxxx' -H 'charset: UTF-8' -H 'accept-encoding: gzip,deflate' -H 'cache-control: no-cache' -H 'content-type: application/x-www-form-urlencoded; charset=UTF-8' -H 'content-length: 95' -H 'user-agent: okhttp/3.12.1' --data-binary "body=%22%7D&" 'https://api.m.jd.com/client.action?functionId=signInCouponCenter&clientVersion=8.3.4&build=70302&client=android&d_brand=HUAWEI&d_model=JKM-AL00bxxx'

    2019/11/17 PHP 知识点

  8. redis数据结构及场景

    数据结构

    2019/11/02 redis 事务