Search code examples
ruby-on-railsherokuindextank

Which is a better gem for indextank?


I am using indextank with heroku. Which is a better gem to use, indextank or thinkingtank? I looked at the documentation, and tutorials for both,and it seems like thinkingtank is easier to use. A related/follow up question: what are the advantages/disadvantages of each?


Solution

  • It depends on what you're doing. If you are writing a simple app that's not based on ActiveRecord, the indextank client lets you add and search content without storing anything within your app. An example: if you are fetching tweets, you could index them directly without having a data model on your side. It's more "low level", so to speak.

    If you are using ActiveRecord or another ORM, you should take a look at Tanker, it's more actively developed than ThinkingTank:

    https://github.com/kidpollo/tanker

    Hope this answers your question, if not please come chat with us at http://indextank.com (chat widget on the main page) and we'll be happy to help!