Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lazify calculating caller file digest until used #1687

Merged
merged 1 commit into from
Apr 18, 2016

Conversation

bf4
Copy link
Member

@bf4 bf4 commented Apr 18, 2016

No description provided.

@bf4 bf4 merged commit 7485c84 into rails-api:master Apr 18, 2016
@bf4 bf4 deleted the lazyify_calculating_caller_digest branch April 18, 2016 21:09

def _cache_digest
return @_cache_digest if defined?(@_cache_digest)
@_cache_digest = digest_caller_file(_cache_digest_file_path)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could be rewritten as @_cache_digest ||= digest_caller_file(_cache_digest_file_path) instead of the two lines.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right. It should never be nilnor empty
On Mon, Apr 18, 2016 at 6:04 PM Lucas Hosseini notifications@github.com
wrote:

In lib/active_model/serializer/caching.rb
#1687 (comment)
:

@@ -42,7 +43,12 @@ module ClassMethods
def inherited(base)
super
caller_line = caller[1]

  •      base._cache_digest = digest_caller_file(caller_line)
    
  •      base._cache_digest_file_path = caller_line
    
  •    end
    
  •    def _cache_digest
    
  •      return @_cache_digest if defined?(@_cache_digest)
    
  •      @_cache_digest = digest_caller_file(_cache_digest_file_path)
    

Could be rewritten as @_cache_digest ||=
digest_caller_file(_cache_digest_file_path) instead of the two lines.


You are receiving this because you modified the open/close state.
Reply to this email directly or view it on GitHub
https://github.com/rails-api/active_model_serializers/pull/1687/files/1d24c9708ae802ec449664f82746d93d8fa345c0#r60149660

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants