Getting hits in RequestHandler

2009-06-28 Thread pof
Hi, I am writing my own request handler and I was wondering how I go about get a list of hits back. Thanks. -- View this message in context: http://www.nabble.com/Getting-hits-in-RequestHandler-tp24248810p24248810.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: [OT] New Book: Search User Interfaces

2009-06-28 Thread Matt Mitchell
This is great! Thanks for this. Matt On Mon, Jun 29, 2009 at 12:30 AM, Ian Holsman wrote: > not directly related to SOLR I know.. but I think most people would find it > interesting. > > > http://searchuserinterfaces.com/book/ > > > from the preface: > > Search is an integral part of peoples' o

Solr slave Heap space error and index size issue

2009-06-28 Thread Vikash Kontia
Hi All, I have 1 master and 1 slave machine at deployment. I am using Solr1.4 nightly Build. My fresh index size is 35GB for 1.5 million documents with approx 50 fields each document I taken care of omitNorm and Stored in schema. I have approx 1 update daily and I run commit in every hr. in

Re: Solr document security

2009-06-28 Thread pof
The custom dispatcher filter example on http://wiki.apache.org/solr/SolrSecurity seems to be what I need however I don't understand the code. Could someone break it down for me? Thanks. pof wrote: > > I want to use filtering or similar, any help? > > > Otis Gospodnetic wrote: >> >> >> That U

Re: Solr document security

2009-06-28 Thread pof
I want to use filtering or similar, any help? Otis Gospodnetic wrote: > > > That URL to your Solr Admin page should never be exposed to the outside > world. You can play with network, routing, DNS and other similar things > to make sure one can't get to this from the outside even if the URL i

Re: Scaling out/up or a mix

2009-06-28 Thread Marcus Herou
Hi. I think I need to be more specific. What I am trying to find out is if I should aim for: CPU (2x4 cores, 2.0-3.0Ghz)? Fast disk IO: 8 disks, RAID1+0 ? RAM - if the index does not fit into RAM how much RAM should I then buy ? Please any hints would be appreciated since I am going to invest so

Re: facets: case and accent insensitive sort

2009-06-28 Thread Peter Wolanin
Seems like this might be approached using a Lucene payload? For example where the original string is stored as the payload and available in the returned facets for display purposes? Payloads are byte arrays stored with Terms on Fields. See https://issues.apache.org/jira/browse/LUCENE-755 Solr se

plans for switching to maven2 (after 1.4 release)?

2009-06-28 Thread aldana
hi, are there plans to migrate from ant to maven2? maybe not for the current trunk (mainline for 1.4), but maybe for the trunk after releasing solr 1.4. it makes the build more standard and easier to import to IDEs. - manuel aldana aldana((at))gmx.de software-engineering blog: http://www.ald

Loading Index synonyms from database

2009-06-28 Thread Ranjit Raveendran
Hello, I was wondering if there was an option to initialize Solr server with synonyms pulled from a database while indexing documents? At the moment, the only option seems to be to use a flat file. Thanks.