api_cache
api_cache copied to clipboard
Simple library which makes it easy to add caching to all your external API calls.
I'm building a gem and added memcached as a dependency but then when I add it: ```Ruby require "coinmarketcap/wrapper/version" require "coinmarketcap/wrapper/api_client" require "coinmarketcap/wrapper/coin" require "coinmarketcap/wrapper/market_data" require 'json' require 'api_cache' require...
So I have multiple values that I want to fetch in bulk but cache separately, is that possible with this gem? I think I could achieve this by fetching each...
First of all wanna thank you for this utility gem! Just wanna share some constructive suggestions. I believe `period: 0` should be the default. A very common case is to...
I don't see any mention of conditional GET requests. If it's not supported, I'd certainly like it added. If it is supported, perhaps the readme could be updated? Specifically, what...
Currently, as long as stale data is available, the only notice you'll get that an API is failing is a warning in the logs. However, if for example, if the...