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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:43:11+00:00 2026-05-27T11:43:11+00:00

I want users to be able to use one search box to search for

  • 0

I want users to be able to use one search box to search for different objects. I would differentiate them on the results page. Both would be full text search.

Should I make a Search controller and load everything into the index action with something like:

@posts = Post.all
@groups = Group.all

Something tells me that would be fantastically inefficient.

I’m not really sure where to start, I haven’t managed to find anything addressing this question on the interwebs, but if I have overlooked something let me know.

Thanks

EDIT:
here’s my search bar that is available globally on my website:

    -form_tag posts_path, :method => :get do
     =text_field_tag :search, params[:search], :id => 'searchfield'
     =submit_tag '',:name => nil, :id => 'searchbutton'

it only searches the “Post” model right now, and displays the results on the Post#index view

I want to be able to have queries typed into the search box be searched for in both the Post and Group tables, and the results be displayed in two separate columns on the same page. maybe through a search controller/view

  • 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-27T11:43:11+00:00Added an answer on May 27, 2026 at 11:43 am

    Add the searchable directive from sunspot solr to your models for indexing. For example:

    class Post < ActiveRecord::Base
      searchable do
        text :title, :body
      end
    end
    
    class Group < ActiveRecord::Base
      searchable do
        text :name
      end
    end
    

    If you have existing data in DB make sure to run rake sunspot:solr:reindex for indexing. For new data the indexing will be done in a hook.

    Now you can search:

    @posts = Post.search {fulltext params[:search]}
    @groups = Group.search {fulltext params[:search]}
    

    Now you have the data for your two columns.

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

Sidebar

Related Questions

Similar Stack Overflow Question I want users to be able to search through my
I want to be able to search and return results across the majority of
I have two forms on one page: a results form and a search form.
I want users to be able to upload files via FTP to my site
In my app I want users to be able to associate a file(s) they
In my Rails app I want users to be able to input video links
I have an app where we want users to be able to send us
I have a situation where I want users to be able to specify a
I have some pages that I don't want users to be able to access
I am creating a game currently and I want users to be able 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.