I'm using Mongoid for a project and am trying to use the batch insert feature by doing:
Person.collection.insert(friends)
Where friends is an array of hashes.
Unfortunately, I'm trying to use key function of Mongoid to set each object's ID to their Facebook user id. Here is the code:
def process_friends(type, friends)
unless friends
@graph = Koala::Facebook::API.new(self.token)
friends = @graph.get_connections('me','friends', {'fields' => 'id,name,picture,education,location,gender'})
end
friends.each do |friend|
friend[:u_id] = friend["id"]
friend.delete "id"
end
Person.collection.insert(friends)
self.update_attributes( process_status: {status: "success", type: type})
end
and in my Person model definition:
key :u_id
It was working when I was looping over all the friends and adding them individually, but now that I've gone to a batch insert it's not setting each Person's id to the u_id.
Any ideas?