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 there any
> specific channels that you had good success with?
>
> Thanks,
>
> Asif
>
> --
> Asif Rahman
> Lead Engineer - NewsCred
> a...@newscred.com
> http://platform.newscred.com
>


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:"(abc12 abc) 12"^1.5) (id:abc12^3.0 |
title:"(abc12 abc) 12"^1.5)

Does anyone have advice for getting this to work?


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 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:"(abc12 abc) 12"^1.5) (id:abc12^3.0 |
title:"(abc12 abc) 12"^1.5)

Does anyone have advice for getting this to work?


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, you can 
try NGramFilterFactory [2]. It's not really documented on the wiki but 
searching will help [3].

 

[1]: 
http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.WordDelimiterFilterFactory

[2]: http://search.lucidimagination.com/search/document/CDRG_ch05_5.5.6
[3]: 
http://www.lucidimagination.com/blog/2009/09/08/auto-suggest-from-popular-queries-using-edgengrams/
-Original message-
From: j 
Sent: Sat 07-08-2010 19:18
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 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:"(abc12 abc) 12"^1.5) (id:abc12^3.0 |
title:"(abc12 abc) 12"^1.5)

Does anyone have advice for getting this to work?

 


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 7, 2010 at 4:59 AM, Asif Rahman  wrote:
>
> > 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
> >
>



-- 
Asif Rahman
Lead Engineer - NewsCred
a...@newscred.com
http://platform.newscred.com


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.commit();

and I'm trying to get the count of updated rows(update indexes)
through UpdateResponse Object or By other methods, but I can't.

Anyone any ideas on How to get the count of updated rows by SolrJ?

Actually, It's possible to get the count on Solr when add or update solr index?