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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:27:20+00:00 2026-05-26T19:27:20+00:00

I want to create a hash (using Base64) based on a composite of foreign

  • 0

I want to create a hash (using Base64) based on a composite of foreign keys from a collection of children objects that belong to a parent.

class Basket < ActiveRecord::Base
  has_many :items
end

class Item < ActiveRecord::Base
  belongs_to :basket
  belongs_to :mfg
  belongs_to :locale
end

So let’s say that we have a basket object that has three item objects:

Item #1
– mfg_id: 1
– locale_id : 2

Item #2
– mfg_id: 3
– locale_id : 4

Item #3
– mfg_id: 5
– locale_id : 6

The hash would like something like:

Base64.encode64(12-34-56)

My question really is what’s the most efficient way in ruby to create such a hash? If it were just a few children objects to iterate over, then I wouldn’t be too worried about efficiency; however, in my case there could be a lot so I’d like your input on the most efficient way that you can recommend to construct the hash.

  • 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-26T19:27:21+00:00Added an answer on May 26, 2026 at 7:27 pm

    Maybe:

    basket.items.select([:mfg_id, :locale_id]).map { |i| "#{i.mfg_id}#{i.locale_id}" }.join("-")
    

    There should a monstrous quantity of items for something like this to be inefficient (because of the creation of the intermediate array). You can also use inject to build the string inplace and avoid the intermediate array, but that’s pretty ugly compared to map + join.

    And using pure SQL (not so portable, but faster):

    basket.items.select("GROUP_CONCAT(mfg_id, locale_id SEPARATOR '-')")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a hash table that relies on an independent vector data
I want to create wrapper class, which will enable keys duplicates while default hash
Using C#, I want to create an MD5 hash of a text file. How
I want to create a signature for a file using OpenSSL. I believe that
I've an Array ['red', 'green', 'blue'] I want to create a new Hash from
I want to create a Java application bundle for Mac without using Mac. According
I want to create a function that performs a function passed by parameter on
I want to create a simple http proxy server that does some very basic
I want to create a simple form for adding new products using jqModal .
I want to partially specialize an existing template that I cannot change ( std::tr1::hash

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.