6 followers
I’m the author of go-zero, coding is my passion.
Learning The programming language that I'm talking about is Go, but I think it's almost the same for most programming languages. I've been coding for over 20 years since graduation. Before learning Go, I've used many programming languages for product...
What is Stream Processing Java developers should be very impressed with Stream API in Java, which greatly improves the ability to handle data collections. int sum = widgets.stream() .filter(w -> w.getColor() == RED) .mapTo...
In microservice development, api gateways play the role of providing restful api to the outside world, and api data often depends on other services, and complex api will depend on multiple or even dozens of services. Although the time consumption of ...
In terms of cache stability, basically every cache-related article and share on the web talks about three key points. Cache penetration Cache Breakdown Cache Avalanche Why talk about cache stability in the first place? You can recall when we introd...
Problems If the response time is too long, the users may have left this page, but the server is still consuming resources to process, and the result obtained is meaningless. Too long server-side processing will cost too much resources, resulting in ...