Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7440455
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T10:51:19+00:00 2026-05-29T10:51:19+00:00

I am a beginner to rails framework. I have a fundamental question. I am

  • 0

I am a beginner to rails framework. I have a fundamental question.

I am trying to define some models and their association referring the popular rails guides. My association looks like below.

class Person < ActiveRecord::Base
  has_one :head
end

class Head < ActiveRecord::Base
  belongs_to :person
end

Here, I need to add the foreign_key (Persons’s primary key) in the table ‘head’.

Now, if I need to get the ‘head’ of a ‘person’, rails need to scan through the head table and match the person_id.

The straight forward way I would think is to add the foreign key in ‘person’ table. Then I can directly refer the ‘head’ from ‘person’ with it’s ID.

It appears that rails convention is not performance friendly. Am I missing something here?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T10:51:20+00:00Added an answer on May 29, 2026 at 10:51 am

    When you create the migration to add the column containing the foreign key, it is highly recommended to add an index on this column. This way, the database will efficiently find the Head from the person_id (as efficiently then a search by its id).

    add_index :heads, :person_id
    

    If it’s a one-to-one association, you can even add the unique option (unless your application accepts conjoined twins 🙂 ):

    add_index :heads, :person_id, :unique => true
    

    I suggest you to have a look to this 2 articles on where to use indexes:

    • http://tomafro.net/2009/08/using-indexes-in-rails-index-your-associations
    • http://tomafro.net/2009/08/using-indexes-in-rails-choosing-additional-indexes
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Beginner rails/javascript question: Let's say that I have a simple Circle model in a
Beginner level question Scenario: Have simple string cocantation tool, that I might expand later
Absolute beginner question: I have a template file index.html that looks like this: ...
I'm trying to move past the beginner stage of Rails and into the intermediate
I'm a beginner at Ruby On Rails and am trying to get a migration
I'm a beginner of Ruby and Rails, so this is probably an easy question.
I am a Rails beginner and trying to understand how rails migration works. I
Beginner rails question: How does one return a file from a controller in rails?
I am a beginner in using Rails and Git I have InstantRails installed and
I'm a rails beginner (I think I have the basics down pretty well at

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.