Dubbo

Dubbo 简介 Apache Dubbo (incubating) |ˈdʌbəʊ| 是开源的一款高性能、轻量级的开源 Java RPC 框架,它提供了三大核心能力:面向接口的远程方法调用,智能容错和负载均衡,以及

大牛面试记录

心得 本来想找PHP的,误打误撞发现广州的Golang和PHP混合用的公司还蛮多。 面试过程 看你简历里也有用过Go,Go和PHP在运行的时候有什

记一下互联网术语

编程常用单词 tmp/temp: 临时对象 startAt/endAt: 开始时间/结束时间 prev/next: 上一个/下一个 职位 PM(Product Manager): 产品经理 AM(Account Manager): 客户经理 RD(Research & Develop): 研发 FE(Front End): 前端 指标 DAU(Daily Active Users): 日活跃数 响应时间(RT) :

Go Json 技巧

omitempty 忽略 struct 空字段,当字段的值为空值的时候,它不会出现在JSON数据中. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 package main import ( "encoding/json" "fmt" ) type User struct { Email string `json:"email"` Password string