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 6773381
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:39:43+00:00 2026-05-26T15:39:43+00:00

I know I’m looping twice in the following code for no reason. How could

  • 0

I know I’m looping twice in the following code for no reason. How could I go the following loop of records in one step instead of first selecting them and then performing actions on it.

merchants = Merchant.all.select do |merchant|
  merchant.url.present? && merchant.url != merchant.new_data.url
end

merchants.each do |merchant|
  merchant.url = merchant.new_data.url
  merchant.save!
end

I bet it’s something very simple — I’m new to Ruby so all this is new to me.

  • 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-26T15:39:43+00:00Added an answer on May 26, 2026 at 3:39 pm

    It’s conceptually ok to iterate over data on separate steps (this allows modularization and composability). Granted, this may be a bit inefficient when using strict structures (as opposed to lazy ones) like Ruby arrays, but no worries for small/medium arrays. Anyway, of course you can join the logic in one step, like this:

    Merchant.all.each do |merchant|
      if merchant.url.present? && merchant.url != merchant.new_data.url
        merchant.url = merchant.new_data.url
        merchant.save!
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Anyone know what type of JSON (if even that!) the following code is? I'm
Know of an OCAML/CAML IDE? Especially one that runs on Linux?
I know of cufon and one other similar. But what is the best way
Know of a way to mock %[]? I'm writing tests for code that makes
I know it's not a good idea to loop SQL queries, so I would
I know you can minify/condense Javascript or CSS code, but can you do this
I know that all of these will be compiled together into one file but
I know there are several questions regarding this topic. However; I cannot find one
Know of any good libraries for this? I did some searches and didn't come
Know this might be rather basic, but I been trying to figure out how

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.