RubyFlow The Ruby and Rails community linklog

×

The Ruby and Rails community linklog

Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!

Submit a post

You can use basic HTML markup (e.g. <a>) or Markdown.
Note that your post may be edited to suit the format of the site.

As you are not logged in, you will be
directed via GitHub to signup or sign in

Post Preview

Note: Only the first pargraph is shown on the front page and overly long paragraphs may be broken up.

Mastering Low Level Caching in Rails

Sometimes when your app is slow, it’s not your fault. Your code might be optimized to the teeth, but it won’t matter if it has to perform intrinsically slow tasks, like fetching data from an external API. In these situations, Rails’ low-level caching can be a life-saver. But caching is infamously tricky. It’s dangerous to go alone. In this article, Jonathan Chase guides us through the landscape of low-level caching. He covers the basics, but more importantly, digs into essential details of cache invalidation and points out common pitfalls. https://www.honeybadger.io/blog/rails-low-level-caching/

Can API Governance Help with Third-party APIs?

APIs are everywhere within your organization. Keeping track of them all, and ensuring that your team chooses the best APIs for their needs can be a challenge. The solution to this “web of APIs” is to apply the concept of API governance to your API dependencies. Read on

Understanding Selection Sort with Ruby

If I asked you to sit down right now and sort a list of numbers, there’s a good chance that you’d intuitively rediscover the selection sort algorithm. It’s a simple approach that can have significant performance implications. That’s why it shows up so frequently in technical interviews - even though most developers never implement sorting from scratch. In this article, Julie Kent walks us through the selection sort algorithm, builds a working implementation in Ruby, and discusses its performance characteristics. https://www.honeybadger.io/blog/ruby-selection-sort/

Loading older posts