method
uncacheable_methods
v7.1.3.4 -
Show latest stable
- Class:
ActiveRecord::Delegation
uncacheable_methods()public
No documentation available.
# File activerecord/lib/active_record/relation/delegation.rb, line 18
def uncacheable_methods
@uncacheable_methods ||= (
delegated_classes.flat_map(&:public_instance_methods) - ActiveRecord::Relation.public_instance_methods
).to_set.freeze
end