multi_fetch_fragments icon indicating copy to clipboard operation
multi_fetch_fragments copied to clipboard

Multi-fetch Fragments makes rendering and caching a collection of template partials easier and faster.

Results 11 multi_fetch_fragments issues
Sort by recently updated
recently updated
newest added

we are handling cache key expiry ourselves so assume we know what we are doing and don't care about digests provides substantial speedup

According to the docs, multi_fetch_fragments supports the shorthand syntax, `render @items, cache: true`. This is true for boolean values, but does not support custom cache keys via proc or lambda...

Hi, I have used Redis instead of Memcached,my question is is this gem works with only Memcached or it will work with Redis as well?

I'm seeing this deprecation warning while upgrading to Rails 5: > DEPRECATION WARNING: alias_method_chain is deprecated. Please, use Module#prepend instead. From module, you can access the original method using super....

I have the following scenario: A partial rendered ( called _folder_results_table.html.erb) every 5 ms in a js view like this. ""; and within that partial I'm trying to render and...

With Rails 3 + Cache Digest + multi_fetch_fragments, I was able to do this: ``` =render partial: 'groups/group', collection: @results, as: :result, cache: true And `groups/group` partial can support dynamic...

The current variable counter is broken if some of the partials are cached and others are not in a collection, hence I have created a new magic variable called: cache_safe_#{variable}_counter...

I did some refactoring, plus I made the following significant changes: - Wrap cache read/write calls in notification instrumentation for fragment read/write logging. - Use correct template when templates are...

I'm using memcached, dalli, heroku, and s3 to serve my images using your gem. I am not 100% sure it is your gem yet because there are a lot of...