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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T04:29:40+00:00 2026-06-04T04:29:40+00:00

I have a User model that has a meta column with a hash, for

  • 0

I have a User model that has a meta column with a hash, for example {“version”=>”1.0”, “country”=>”UK”}

What is the best practice / efficient way to count each individual values in any key? So I might want to figure out how many records have country = UK or USA or France, etc. I do not know all the possible values in each key beforehand…

I guess I can do it in a big loop

User.all.each do |user|
  user.meta["country"] ..........

but is there a better way to do it?

  • 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-04T04:29:41+00:00Added an answer on June 4, 2026 at 4:29 am

    Yes, there’s group_by

    arr = [{"version" => "1.0", "country" => "UK"},
           {"version" => "1.0", "country" => "France"},
           {"version" => "1.0", "country" => "UK"},
           {"version" => "1.0", "country" => "USA"},
           {"version" => "1.0", "country" => "France"},
           {"version" => "1.0", "country" => "UK"}]
    grouped = arr.group_by {|el| el["country"]}
    #=> {"UK"=>[{"version"=>"1.0", "country"=>"UK"}, 
    #           {"version"=>"1.0", "country"=>"UK"}, 
    #           {"version"=>"1.0", "country"=>"UK"}], 
    #    "France"=>[{"version"=>"1.0", "country"=>"France"}, 
    #               {"version"=>"1.0", "country"=>"France"}], 
    #    "USA"=>[{"version"=>"1.0", "country"=>"USA"}]}
    grouped.map {|k,v| [k, v.length]}
    # => [["UK", 3], ["France", 2], ["USA", 1]]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a User model that has the following default_scope: default_scope where(account_id: Account.current_account.id) If
I have a model that has a ForeignKey to the built-in user model in
Say I have a model called User that has the following parameters: favorite_color, favorite_animal,
I have a model that holds user address. This model has to have first_name
I have a User model that has many fights. Fight belongs to User. There
I have a user model that has a few different types, i.e. there is
I have a user model that has many carts class User < ActiveRecord::Base has_many
I have a User entity that has a Current Location field (city and country).
I have a user model that has properties such as username, password, first name,
I have a User model that has a Roles collection. The Roles collection has

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.