redis一些总结

缓存穿透(缓存击穿) 通过互斥锁防止db攻击1.互斥锁解决public String get(key) { String value = redis.

Golang中的一些小陷阱

// Simulating getting the data from a datasource – lets say a DB.