similar to: Returning all fields indexed in solr using acts_as_solr

Displaying 20 results from an estimated 110 matches similar to: "Returning all fields indexed in solr using acts_as_solr"

2011 Sep 08
8
acts_as_solr problem ActsAsSolr::SearchResults:
hi, i am using acts_as_solr plugin when i tried with search by def search puts "#####################" # ids = params[:name] @id = params[:query] @emp = Employee.find_by_solr(@id) puts "------------------------------#{@emp}" respond_to do |format| format.html{render :action => ''search''} format.xml end
2011 Sep 09
2
acst_as_solr error
hi, i am using https://github.com/mattmatt/acts_as_solr it shows the following error "undefined method ''each'' for " for this results = Employee.find_by_solr(@id) results.each do |emp| puts emp.id end where plugin does not contains "each" method in acts_as_solr/libs/ search_results.rb so for me each is not working with ActsAsSolr::SearchResults
2010 Aug 21
0
problem with date range search using acts as solr
Hi, i am struck up with solr''s date range search. I have used acts_as_solr plugin in my rails project. My model looks like acts_as_solr :fields => [:title,{:createdate=>:date}] No problem,if i used following date range search format => model.find_by_solr("createdate:[NOW-1DAY TO NOW+1DAY"] if i used following format =>
2007 May 31
0
Question on boosting and pagination with acts_as_solr
I am currently working with Solr and acts_as_solr. I updated acts_as_solr to include boost value in field attributes and for some reason they dont seem to have an impact on result scores. On Pagination with acts as solr, is there a way to find out the total number of entries u get with the search? Thanks for your response. cheers -- Posted via http://www.ruby-forum.com/.
2010 Sep 16
6
acts_as_solr plugin fate?
Just wanted to see if I was using the latest acts_as_solr plugin, but the URL <http://acts_as_solr.railsfreaks.com/> takes me to a GoDaddy domain parking page. Anyone know what''s happened to railsfreaks, and more particularly this plugin? -- Hassan Schroeder ------------------------ hassan.schroeder-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org twitter: @hassan -- You received this
2008 Apr 23
0
Flare plugin (with Ruby Solr library and acts_as_solr plugin)
Hello, I''m looking for informations about this plugin (Flare). http://wiki.apache.org/solr/Flare/ Is it a final plugin? Can we use it on final production application? Have you some documentation / tutorial about it? I don''t find anything ! I would be grateful to your help that you bring to me. Vincent --~--~---------~--~----~------------~-------~--~----~ You received this
2008 Feb 06
1
RSpec 1.1.3 + ZenTest 3.9.1 + Rails 1.2.6 do NOT ignore folders ^vendor/*
Hi, I just updated to the latest RSpec 1.1.3 + ZenTest 3.9.1. I also have rspec 1.1.3 installed as a gem When starting autotest with -v option, there is a lot of noise because autotest does not ignore the vendor folder, the migrations, etc ...: Dunno! vendor/plugins/acts_as_solr/solr/lib/jetty-util-6.1.3.jar Dunno!
2011 Sep 09
0
Mysql::Error error in acts as solr plugin
hi, i am using acts_as_solr in plugin, in my table i got three columns emp_id, name, experience. when i tried to run my application i got following error "Mysql::Error: Unknown column ''employees.id'' in ''where clause'': SELECT `employees`.* FROM `employees` WHERE (employees.id in (NULL))" in my table i dont have column "id", but
2008 Dec 24
1
Need help : Rails app unable to connect to Solr server
Hi, I am trying to integrate solr in ruby on rails application.For that i am using the plugin acts_as_solr and gem solr-ruby. My solr server starts successfully with command $ rake solr:start But when I try to add data from $ script/console , it says that it cannot connect to solr server at the corresponding port.Same is the result if i try the browser to link to http://localhost:8982/solr
2011 Dec 16
0
eroor with acts as solr pagination undefined method `paginate_all_by_solr'
Hi, i have tried to paginate search result of acts as solr by using following like http://henrik.nyh.se/2007/06/using-will_paginate-with-acts_as_solr and i am getting following error undefined method `paginate_all_by_solr'' for #<Class:0xb4fa5f0> could any one provide me solution pls, thanks, -pab -- You received this message because you are subscribed to the Google Groups
2008 Apr 23
1
Error in execution of rails Application using solr Search engine
I installed solr search engine in my Rails application when i started server then i found this message execution expired and usr/lib/ruby/1.8/timeout.rb:54:in `rbuf_fill'' /usr/lib/ruby/1.8/timeout.rb:56:in `timeout'' /usr/lib/ruby/1.8/timeout.rb:76:in `timeout'' /usr/lib/ruby/1.8/net/protocol.rb:132:in `rbuf_fill'' /usr/lib/ruby/1.8/net/protocol.rb:116:in
2007 May 30
9
In Search of Search!
I am implementing a search on my site and was wondering which will be the best way to go about it. We want a full text search and an advance search. We will have huge amounts of data that we would want to search. - on multiple tables. I went through the plugins acts_as_ferret and acts_as_solr. but ferret seems to have a locking problem at high load and solr needs a java server. So what do you
2011 Jan 31
3
Webmail application in ROR
Dear all, Do you know any webmail apps in Ruby on Rails ?? Though I found "mailr", it does not seem to be working with Rails 3.0. If anybody have any ideas about such apps, please do reply. Thanks !! -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2007 Jul 04
6
Inconsistent results when using wild card queries
We get some unexpected results when using wild card queries. We''re using aaf and Ferret 0.11.4 For exampel, when seraching on a part of a collegues name (kristofer) and limiting it to a specific source_id: Query: source_id:25 AND kri* Result: 2 documents. None of them containg the word kristofer, but other matching words, as "kring" and "kring?" (swedish) Query:
2012 Dec 27
1
Conjunction and disjunction in pubmed query
Hi: I am trying to query pubmed abstracts using the following syntax: url= "http://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?" search = paste(url, "db=pubmed&term=", queryTerm1, "+AND+", queryTerm2,"+OR+",queryTerm3, "+OR+", queryTerm4, "[abstract]&retmax=100&usehistory=y", sep="") docId <-
2007 Oct 15
2
how to get all index information on Acts_As_Ferret
how to get all index information on Acts_As_Ferret, like @index=User.find(:all) on rails. I looked around ActsAsFerret::ClassMethods, and didn''t find it..please help me! Thanks! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2007 Jun 07
5
Advise on slowness in bootstrapping?
I am looking at trying to use ferret/aaf to supplement my querying against a medium and large table with lots of columns. Some facts first: Ferret 0.11.4 AAF 0.4.0 Ruby 1.8.6 Rails 1.2.3 Medium table: 105,464 rows 168 columns (mostly varchar(20)) 11 actual columns indexed in aaf plus 40 virtual columns indexed in aaf (virtual is concat of two physical columns. e.g. cast_first_name_1 +
2010 Jan 25
3
Dynamic attributes!
I want to create a general model ''Product'' that I will be able to store several attributes in it. For example the attributes :id :name :description are pretty stantard. So each product will have this attributes. However, I wanted to know if it is possible to create dynamic attributes. In the case of a cell phone device I might want to store the IMEI of the phone, this
2007 Nov 16
18
Multithreading / multiprocessing woes
I''ve been running some multithreaded tests on Ferret. Using a single Ferret::Index::Index inside a DRb server, it definitely behaves for me as if all readers are locked out of the index when writing is going on in that index, not just optimization -- at least when segment merging happens, which is when the writes take the longest and you can therefore least afford to lock out all reads.
2007 Aug 29
12
ruby on rails search engine
He all, who can recommend me search engine(search for different models) for my web-site? ps: i know about ferret for example, but maybe there are some others? Thank you -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this