1,914 reputation
617
bio website alanpeabody.com
location Burlington, VT
age 29
visits member for 3 years, 4 months
seen 9 hours ago
stats profile views 80
Web Application Developer with solid knowledge in Ruby, Rails, JavaScript, jQuery, html, and css.

Mar
20
comment How do I improve these queries' performance?
The includes method tells rails "hey, load all related data in these two tables also!" That works great in most cases, however you include them and THEN later you try to query those relationships with different conditions. At that point rails says "oh, I don't have THIS set of records, guess I better query again". Basically every time you do a .where or a .order you have to hit the db again. I just moved that logic up into your initial include by adding it to a relationship, so when you hit it again rails says "Oh I have that!" That make sense?
Mar
19
answered Rspec - respond_to “user post” valid despite user is not valid (has_many/belongs_to association)
Mar
19
answered How do I improve these queries' performance?
Mar
18
awarded  Organizer
Mar
18
revised How do i recover code? Git noob
edited tags
Mar
18
comment Ruby on Rails: How do I sum up these elements in my database?
Yes. @video.vote_sum is the same as calling @video.video_votes.sum(:value) in example #1. The benefit is your views will be cleaner and you can write unit tests for the logic in the model. It will also allow you to move the value into the database field if performance becomes an issue without needed to update your views.
Mar
18
revised Ruby on Rails: How do I sum up these elements in my database?
added 513 characters in body
Mar
18
comment Ruby on Rails: How do I sum up these elements in my database?
You are in essence adding behavior to the vote_sum method defined by active record. You could also write a migration to populate the vote_sum field and remove that method. You could also start by not caching the vote sum until it becomes a performance issue. Will Update the answer with that strategy.
Mar
18
answered Rails 3, rendering a partial for the given controller if it exists?
Mar
18
revised Ruby on Rails: How do I sum up these elements in my database?
added 143 characters in body
Mar
18
comment Ruby on Rails: How do I sum up these elements in my database?
read_attribute(:vote_sum) would read the vote_sum field in the video table. If it was nil it would then call the sum method on the relationship. In a view you would just do @video.vote_sum to get the sum. In the video vote class you then just update the sum in on the video object when a new vote is saved.
Mar
18
comment RoR: STI / MTI / Mixin confusion
In your sti example Customer.all should only return customers, not all ThirdParties. Make sure you add a type column.
Mar
18
answered Ruby on Rails: How do I sum up these elements in my database?
Mar
18
answered How do I make checkboxes for a has_many :through association using the form builder?
Mar
18
answered Ruby on Rails - how to reload classes?
Mar
11
comment Send emails from Rails 3 in development mode, offline?
I did not know if you can use the mail command, as it is not actually an email tool.
Mar
11
answered Rails / Ruby: Getting a subset of objects after a .find query
Mar
11
answered Rails habtm callbacks
Mar
11
answered Send emails from Rails 3 in development mode, offline?
Mar
11
answered Rails 3/SQL: Database schema for ordered hierarchical (nested) data