Questions tagged [searchify]

Searchify is a hosted full-text search service with faceted search, autocomplete, geolocation search, and client libraries in Ruby, Python, PHP, Java, Go, .NET, and others.

5 questions
1
vote
0 answers

rails, gem tanker, search through several models

I'm using Searchify (IndexTank) in my rails app. Everything works perfect with separate models. I added tanker conf to my models (ex. Question model): class Question < ActiveRecord::Base attr_accessible :name, :user_id self.per_page = 2 …
jizak
  • 382
  • 2
  • 13
0
votes
1 answer

Basic search service for autocompletion

I have a movies database and would like provide a search with autocompletion on my site. Could somebody recommend any free cloud services or a PHP script for this. I'm using a free hosting at the moment and cannot install solr. I would prefere not…
jeff
  • 1,169
  • 1
  • 19
  • 44
0
votes
1 answer

Invalid document size. It shouldn't be bigger than 100KB

I'm using Searchify on Heroku with Tanker as my gem. When I try to run an reindex on certain models I get an invalid document size error. I've tried to change the batch size, but no luck. Model.tanker_reindex(:batch_size => 1000)
Walksalong
  • 191
  • 2
  • 13
0
votes
1 answer

Use Tanker and Searchify to search for a Post's User

As stated in the title, I'm looking for the tankit index method in my model that allows for indexing for a Post's User. In my model I have: tankit 'idx' do indexes :title indexes :content indexes :post_loc indexes…
Vasseurth
  • 6,354
  • 12
  • 53
  • 81
0
votes
2 answers

general setup for searchify in rails, how to access variable from initializer file

how do i access a variable from an initializer file? i have a file called search.rb in my initializer folder api_client = IndexTank::Client.new 'http://:xxyyzz@xv9v.api.searchify.com' index = api_client.indexes 'idx' however, in my controller…
Sasha
  • 3,281
  • 7
  • 34
  • 52