Are there other search options for heroku

前端 未结 8 1143
孤街浪徒
孤街浪徒 2021-02-06 05:42

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

相关标签:
8条回答
  • 2021-02-06 05:50

    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!

    0 讨论(0)
  • 2021-02-06 05:52

    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

    0 讨论(0)
  • 2021-02-06 05:58

    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 :)

    0 讨论(0)
  • 2021-02-06 06:00

    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.

    0 讨论(0)
  • 2021-02-06 06:04

    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

    0 讨论(0)
  • 2021-02-06 06:06

    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.

    0 讨论(0)
提交回复
热议问题