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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T04:50:25+00:00 2026-06-01T04:50:25+00:00

I have the following scope, which I know is not optimal: scope :event_stream_for, lambda{

  • 0

I have the following scope, which I know is not optimal:

scope :event_stream_for, lambda{ |user|
  where("target_id in (?) and target_type = ?", user.events.collect(&:id), "Event")
}

This creates 3 queries. How can I optimize it?

Alternatively, how do I put the whole sql statement in lambda of the scope, like

SELECT * FROM activities WHERE target_type =='Event' AND target_id IN (SELECT DISTINCT id FROM events WHERE (host_id == user.id OR invitee_id == user.id))

Thank you

  • 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-01T04:50:26+00:00Added an answer on June 1, 2026 at 4:50 am

    Assuming user has many events and each event belongs to a user.

    scope :event_stream_for, lambda{ |user
      joins(:events). # or joins("LEFT JOIN events ON events.user_id = users.id").
      where(["target_type=?", "Event"]) 
    }
    

    this will run one query. Haven’t tested my code with your table, but it should work similarly.

    ———————– based on your edited question ——————-

    SELECT * FROM activities WHERE target_type ==’Event’ AND target_id IN (SELECT DISTINCT id FROM events WHERE (host_id == user.id OR invitee_id == user.id))

    It’s all about ActiveRecord Relation, http://railscasts.com/episodes/239-activerecord-relation-walkthrough?view=asciicast

    Activity.
    select("*,distinct events.id AS events_id").
    joins("events ON (events.host_id = #{user.id} OR events.invitee_id = #{user.id}").
    where(:target_type => 'Event')
    

    Try this on console, and if it works you can just simply change it to scope.
    Since i m not sure what you are trying to do, you may need some adjustment.

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

Sidebar

Related Questions

I have the following named scope: named_scope :report_search, lambda { |search| { :conditions =>
I have defined the following two scopes and both working fine: scope :regular_friends, lambda
I have the following named_scope which works fine in MySQL and sqlite but bombs
If I have the following named_scope named_scope :scope_by_user_id, lambda {|user_id| {:conditions => [comments.user_id =
I have a User model that has the following default_scope: default_scope where(account_id: Account.current_account.id) If
When I create my feature I have the following choices for feature scope: WEB
Hi I have a named_scope in my User model as following. named_scope :by_gender, lamdba
I have the following table: id INT (PRIMARY) score INT I'd like to know,
I have just installed leksah following the user manual . The manual says that
I have defined the following select list: <%= this.Select(Scope) .Options(Scopes.AllValues) // static property to

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.