mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Perf: don't allocate hashes OVER and OVER in a loop, its bad
This commit is contained in:
parent
c59c2a4bb3
commit
030d2260a7
1 changed files with 22 additions and 5 deletions
|
@ -11,11 +11,28 @@ class AvatarLookup
|
|||
|
||||
private
|
||||
|
||||
def users
|
||||
@users ||= User.where(:id => @user_ids)
|
||||
.select([:id, :email, :username, :use_uploaded_avatar, :uploaded_avatar_template, :uploaded_avatar_id])
|
||||
.inject({}) do |hash, user|
|
||||
hash.merge({user.id => user})
|
||||
def self.lookup_columns
|
||||
@lookup_columns ||= [:id,
|
||||
:email,
|
||||
:username,
|
||||
:use_uploaded_avatar,
|
||||
:uploaded_avatar_template,
|
||||
:uploaded_avatar_id]
|
||||
end
|
||||
|
||||
def users
|
||||
@users ||= user_lookup_hash
|
||||
end
|
||||
|
||||
def user_lookup_hash
|
||||
# adding tap here is a personal taste thing
|
||||
hash = {}
|
||||
User
|
||||
.where(:id => @user_ids)
|
||||
.select(AvatarLookup.lookup_columns)
|
||||
.each{|user|
|
||||
hash[user.id] = user
|
||||
}
|
||||
hash
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue