Speed Up Your Rails App by 66% - The Complete Guide to Rails Caching

Published on 🔗

I've always been a big fan of caching mechanisms used in rails ever since I read the rail's guide about caching. I had found that the design patterns that has been used to accomplish it had been so profoundly beautiful that I had implemented the pattern in other non-rails projects too. My fascination for it was even more enhanced when I found the practice of 37signal and DHH's Russian Doll Caching.

MyanmarCarsDB goes through intensive periods of cache optimizations based on those practices and readings that caching is the only part of MyanmarCarsDB that requires its own documentations.

Nevertheless, we've been running into some issues with cache, mainly because the CacheStore we've been using has been the primitive ActiveSupport::Cache::FileStore.

The rigorous approach to caching detailed here is gonna be a big help to solving the problem we've been facing.

Visit Link 🔗