Hiring solr experts

2010-08-07 Thread Asif Rahman
Hi all, Does anyone here have any experience hiring solr experts? Are there any specific channels that you had good success with? Thanks, Asif -- Asif Rahman Lead Engineer - NewsCred a...@newscred.com http://platform.newscred.com

Re: Hiring solr experts

2010-08-07 Thread Erick Erickson
Well, what do you want them to do? Come work full-time for your company or consult/contract? If the latter, have you seen this? http://wiki.apache.org/solr/Support On Sat, Aug 7, 2010 at 4:59 AM, Asif Rahman wrote: > Hi all, > > Does anyone here have any experience hiring solr experts? Are the

dismax debugging hyphens dashes

2010-08-07 Thread j
How does one debug index vs. dismax query parser? I have a solr instance with 1 document whose title is "ABC12-def". I am using dismax. While "abc", "12", and "def" do match, "abc12" and "def" do not. Here is a the parsedquery_toString, I'm having trouble understanding it: +(id:abc12^3.0 | title:

RE: dismax debugging hyphens dashes

2010-08-07 Thread Jonathan Rochkind
What analzyers are on your field? From: j [jta...@gmail.com] Sent: Saturday, August 07, 2010 1:17 PM To: solr-user@lucene.apache.org Subject: dismax debugging hyphens dashes How does one debug index vs. dismax query parser? I have a solr instance with 1 do

RE: dismax debugging hyphens dashes

2010-08-07 Thread Markus Jelsma
Well, that smells like a WordDelimiterFilterFactory [1]. It splits, as your debug output shows, value into three separate tokens. This means that (at least)  the strings 'abc', '12' and 'def' are in your index and can be found. The abc12 value is not present. If you want to query for substrings,

Re: Hiring solr experts

2010-08-07 Thread Asif Rahman
We're actually looking to bring someone on full-time. On Sat, Aug 7, 2010 at 3:13 PM, Erick Erickson wrote: > Well, what do you want them to do? Come work full-time for > your company or consult/contract? > > If the latter, have you seen this? > http://wiki.apache.org/solr/Support > > On Sat, Aug

How to get the count of update rows by SolrJ

2010-08-07 Thread Kouta Osabe
Hi everybody, I use SolrJ to add and update the solr index. my sample code is like this. SolrServer server = new CommonsHttpSolrServer("http://localhost:8983/solr";); ExampleDto dto = new ExampleDto(); dto.id = "a11200"; dto.name = "Dummy"; UpdateResponse response = server.addBean(dto); server.c