Jonathan
Jonathan

Reputation: 16349

Are there other search options for heroku

I am about to launch a beta site, and heroku looks like a great option. The only think that is getting me down is that the only search option is $20/mth for the Websolr add-on.

I am sure that Websolr is great, but at this very early point in this project, I rather not light up that expense.

Are there any free search options to couple with heroku's Blossom (free) plan.

I feel like such a cheapskate!

Upvotes: 8

Views: 2213

Answers (8)

Jonathan
Jonathan

Reputation: 16349

This post seems to have good options:

Leveraging the full text search of postgrSQL:

http://tenderlovemaking.com/2009/10/17/full-text-search-on-heroku.html

Also explains the options of Ferret and Solr.

Upvotes: 7

Simpleton
Simpleton

Reputation: 6415

If you're using Postgres for your Rails app then take a look at this free way to do full text search:

Part 1 and Part 2

This uses the pg_search gem to allow you to use PostgreSQL's pg_search_scopes feature and have full text search without any other dependencies.

Upvotes: 0

Grant Hutchins
Grant Hutchins

Reputation: 4409

My gem pg_search does full-text search against PostgreSQL, and works directly on Heroku.

Check it out and let me know if it works for you!

Upvotes: 2

Matt
Matt

Reputation: 951

Looks like IndexTank was purchased by LinkedIn and will be discontinuing support (although some portions might be open-sourced in the future). See this post for more info: https://indextank.com/documentation/faq2

Upvotes: 0

Spike
Spike

Reputation: 260

IndexTank has a heroku addon you can use for free.

It has some advantages over websolr, like realtimeness, fast (all in ram), and a very flexible scoring system that doesn't require to reindex (allows for very easy a/b testing).

Upvotes: 4

Shripad Krishna
Shripad Krishna

Reputation: 10498

acts_as_tsearch works great. No configuration needed if you have postgresql > 8.3. Have to experiment with multiple tables though. Will use it on heroku till i can afford the WebSolr Add-on. I found it a better option compared to the texticle method as explained in the article link above (tendermaking).

acts_as_tsearch: http://github.com/pka/acts_as_tsearch

Upvotes: 1

Shripad Krishna
Shripad Krishna

Reputation: 10498

acts_as_ferret won't work as Heroku cleans up the /tmp directory regularly. Even i am in need of a full-text solution. Thinking of trying out the acts_as_tsearch plugin.

Upvotes: 0

Boris Churzin
Boris Churzin

Reputation: 1203

No, I was looking for that too a week ago, and didn't find anything...
And I don't think there is any work in progress on another add-ons like this as they already have one, so they won't put another that is free... :/
Anyway, heroku is amazing, so try to make it work with code or just spend $20 :)

Upvotes: 0

Related Questions