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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T08:15:17+00:00 2026-06-11T08:15:17+00:00

I’ve been thinking about how gmail queries their conversations. I know they are using

  • 0

I’ve been thinking about how gmail queries their conversations. I know they are using different technology, but I want to mimic as best I can.

Currently I fetch a list of conversations and then I have to fetch messages for each conversation. I can use a normal join:

Conversation.joins(:messages).first

But that will join every single message, and I only need the last message. How would I structure this query? Even better would be to join when I do Conversation.all:

Conversation.joins(:messages).all # but only join last message for each conversation

Additionally, can I use conditions to join the last message with a certain user id?

message.user_id = 1
Conversation.joins(:messages).all # only last message where user_id = 1

I am using squeel if that helps in demonstrating the query.

What is the most optimal way of fetching conversations, and the last message for each conversation?

  • 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-11T08:15:19+00:00Added an answer on June 11, 2026 at 8:15 am

    This is customarily accomplished using a having clause. You might do something like this, in Squeel (note, untested):

    user.conversations.includes{messages}.group{id}.having{messages.id == max(messages.id)}
    

    You’ll be grouping on the conversation id, then using having to weed out all rows but the one with the max message id in each group.

    Note: “having” isn’t a particularly desirable thing to do, in many cases. You’ll want to check the explain for the query to make sure you’re not going to cause yourself undue pain down the road. If so, you might consider adding a cache column on the conversation that points at the last message in the conversation, and then just setting up an association against that column.

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

Sidebar

Related Questions

I want to count how many characters a certain string has in PHP, but
I am reading a book about Javascript and jQuery and using one of the
I have a French site that I want to parse, but am running into
I want to construct a data frame in an Rcpp function, but when I
I am using Paperclip to handle profile photo uploads in my app. They upload
I have a jquery bug and I've been looking for hours now, I can't
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I want use html5's new tag to play a wav file (currently only supported

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.