When we cache a partial in rails using cache digests, how does the conditional logic in the partial get handled? Does it cache the full template and later apply the conditionals so that the right json/html can be served to the right user?
Rails cache_digests and conditionals
150 Views Asked by Pratik Khadloya At
1
There are 1 best solutions below
Related Questions in RUBY-ON-RAILS-3
- Jruby: How to use third party java library?
- How do I update create route from rails 3 to 4
- Can't update user in Ruby on Rails
- Rails Ancestry. How can I display a single comment with all its descendants?
- LinkedIn API returns Positions without Title
- Catch emails to all [email protected], and execute code
- Cannot run elastic search in circleci to make my rspec for elasticsearch to pass?
- How do I clear values from text_field_tag after browser refresh?
- Rails submit create action succeeding
- f.select with enum in rails 3
- Rails 3 join where query - print only on row
- Rails testing button functionality with capybara.
- Fix spurious rspec "photo can't be blank" failures for Carrierwave
- ActiveRecord Slow Object Instantiation
- Ruby on Rails 3 Multiple Associations
Related Questions in CACHING
- ClassCastException: datastructures.instances.JClass cannot be cast to java.util.ArrayList
- Robospice. How to save data and how to get data from DB?
- Make @lru_cache ignore some of the function arguments
- Xib taking long time (>1s) to load. UIFont cache seems to blame
- Android picasso cache images
- Rails 4 low-level caching not working
- How to cache Exchange web service API autodiscoverurl?
- The process cannot access the file because it is being used by another process asp.net
- Alamofire loading from cache even when cache policy set to ReloadIgnoringLocalAndRemoteCacheData
- Java Heap vs Cache
- In what use cases is locking on ASP.NET cache required/desirable
- Chrome cache overriding angularjs disabling of cache
- AFNetworking 2.0 Cache Issue
- Symfony ESI Cache / Surrogate Listener Issue
- Using getOrElseUpdate of TrieMap in Scala
Related Questions in CACHE-DIGESTS
- Rails 4 redirect links to ip address on Redis
- Disable cache digest in rails4
- Rails cache_digests and AbstractControllers
- Whats the template option in cache_digests gem for?
- What formats does ActionView::Digestor.new accept for name?
- Why do my self-referential templates break cache digest calculation in the console and rake but not in the server?
- Rails cache_digests and conditionals
- Warming Up Cache Digests Overnight
- Disable cache digests in Rails 4
- Rails Russian Doll Caching and N+1
- Nesting cached Rails fragments slows down site by 300% in development: why?
- Issues using Russian Doll Caching with Template Inheritance
- Russian Doll Cache Digest Partials Not Bubbling Up
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This part of question seems a bit unclear to me, so I'll provide different options based on what "conditionals" could be.
First of all, cache digests do not care about inner conditions based on @variables's state (unless a particular state is mentioned inside of its cache key). Consider the following example:
In case you apply caching to the whole page with
cache ['users_haml'], the cache would be generated just once (for the first user with whichever role). Any user who accessed this page later would see the sameh4greeting as the one which has been shown to the first user. The reason here is thatdigestfor stringusers_haml, proved tocachemethod, is always the same regardless of any circumstances.On the other hand,
cache @userwould provide slightly different behaviour. Each user who opensusers.hamlpage would see proper greeting based on his/her role. The reason for this behaviour is thatdigestdiffers for all objects of typeUser, socache_digestsgenerates N cached pages for N users.The last one kind of conditionals which comes to mind is the one based on conditional partials rendering, e.g.:
So, this one renders correct cached page for users with different months of birth. But what should happen if I change the contents of
partial_one? How doescache_digestsunderstand that cache should be invalidated for those who were born in october (based on the conditional statement)?The answer here is that it doesn't know that at all. The only thing it knows is that
users.hamldepends on bothpartial_oneandpartial_two, so changes to either of these inner partials gonna invalidate ALL theusers.hamlpage caches regardless of users' month of birth.