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

  • Home
  • SEARCH
  • 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 7989281
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T12:42:43+00:00 2026-06-04T12:42:43+00:00

I have a model called City. I have several methods that look for a

  • 0

I have a model called City.

I have several methods that look for a City depending on different attribute (city close to zip code, city by population…etc). However, if a city is not found I want to default to a given city, let’s say New York.

So I have found myself doing this a lot:

@city = City.find_by_zip_code(83030)
if @city.nil?
 @city = City.find_by_name('New York')
end

This is just in a method where I look by zip code, but I keep doing this in several methods. Where and how should I centralize this default:

City.find_by_name('New York')

EDIT:

Would it be a good idea to have a method like this:

def self.default_city
 @default_city = City.find_by_name('New York')
end

To avoid fetch the database everytime I want to get the default city?

  • 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-06-04T12:42:44+00:00Added an answer on June 4, 2026 at 12:42 pm

    You can at least make it easier to type out:

    @city = City.find_by_zip_code(83030) || City.find_by_name('New York')
    

    To avoid extra db hits, cache the default:

    def self.default_city
      Rails.cache.fetch('default_city') do
        City.find_by_name('New York')
      end
    end
    

    I have a blog post with a few more details about caching like that:
    http://www.tmatthew.net/blog/rails-caching-example

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a CodeIgniter MVC application. I have a model called city that has
I have a model called Details, and two controller methods new and create. New
I have a model called company that has_many users then users belongs_to company. class
Say I have a model called User that has the following parameters: favorite_color, favorite_animal,
I have a model Rails model called Orders that has a type_id, location, and
I have a model called websites that has_many :likes , and of course another
I have a model called folder that acts as a tree. Inside the model
I have a Model called blog_model. The code for its constructor is below: class
I have a model called PageMetaData that contains a title and a description .
I have model/controller called notification. I want to make a new url so that

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.