Bookmarks with tag "performance", page 3 of 4
In this post, we will discuss how to make HTTP requests for higher performance in Go, and also how to tune it.
Performance is critical to success, and caching is one basic tool for improving it. Learn all about caching with NGINX and NGINX Plus.
Get JSON values quickly - JSON parser for Go
Richard Schneeman explains how Ruby uses memory, running through various examples and methods. This information is something every Ruby dev should know.
Writing Fast Ruby - Collect Common Ruby idioms.
Deploying a large Elasticsearch cluster used to be hard, but with the power of Kubernetes and a few simple scripts, anyone can create whatever sized cluster they need.
A mutex is very powerful tool for a concurrent programming. We learned about itin the last article. But inappropriate use ofmutexes can lead to serious probl...
Profiler for your development and production Ruby rack apps.
Performance is critical to success, and caching is one basic tool for improving it. Learn all about caching with NGINX and NGINX Plus.
MessagePack is an efficient binary serialization format. It lets you exchange data among multiple languages like JSON. But it's faster and smaller. Small integers are encoded into a single byte, and typical short strings require only one extra byte in addition to the strings themselves.