Texticle exposes full text search capabilities from PostgreSQL, extending ActiveRecord with scopes to make search easy and fun!
Questions tagged [texticle]
7 questions
4
votes
4 answers
Partial matches with postgresql full-text search using texticle on Heroku
Trying to get searching working on Heroku using partial search
The following query generates an SQL error on Heroku, but works correctly in my locally version:
@events.search(params[:search]+":*")
I am using the Heroku shared database service, is…

Toby Hede
- 36,755
- 28
- 133
- 162
3
votes
2 answers
Texticle fuzzy search not finding anything in Ruby on Rails
I've added the following to my gemfile:
gem 'texticle', "2.0", :require => 'texticle/rails' # search gem
I then ran bundle install and bundle installed the gem
I'm using Rails 3.1.0 and I have am using a Postgres database.
I verify that I actually…

EverTheLearner
- 7,040
- 16
- 57
- 72
1
vote
0 answers
Texticle in rails isn't providing the responses I want. How configurable is it? or have I got it wrong?
I'm using the texticle gem in a Rails 3 app.
I've got a table full of food names, such as Onion, Green Onion, Onion Powder, etc. etc.
I'm searching the table with
foodnames = FoodName.search(params[:search])
return render :json =>…

pedalpete
- 21,076
- 45
- 128
- 239
1
vote
0 answers
meta_search conflicting with texticle search gem
I use the active_admin gem which requires the meta_search gem and noticed it conflicts with texticle as they both use the search method and it breaks as a result. I read in a few places about similar problems involving solr where they were able to…

ere
- 1,739
- 3
- 19
- 41
1
vote
1 answer
Texticle and ActsAsTaggableOn
I'm trying to implement search over tags as part of a Texticle search. Since texticle doesn't search over multiple tables from the same model, I ended up creating a new model called PostSearch, following Texticle's suggestion about System-Wide…

you786
- 3,659
- 5
- 48
- 74
0
votes
0 answers
Get a model relationship with texticle
I'm searching for cars in my database, and using texticle.
I have manufacturers, styles, engines tables. A car is made up of the relationships between these tables. Every car has a manufacturer, a style and an engine.
what I'm trying to figure out…

pedalpete
- 21,076
- 45
- 128
- 239
0
votes
1 answer
How can I assign an order or weighting to a column using texticle search?
I'm using texticle to search through the name and description attributes of a product model.
So far, texticle seems to rank the query found in the description higher than the query found in the name. I would like to do the reverse of this.
In…

digitalWestie
- 2,647
- 6
- 28
- 45