How to send an OpenBitSet object from Solr server?

2011-08-29 Thread Satish Talim
We have a need to query and fetch millions of document ids from a Solr 3.3 index and convert the same to a BitSet. To speed things up, we want to convert these document ids into OpenBitSet on the server side, put them into the response object and read the same on the client side. To achieve this,

Re: How to send an OpenBitSet object from Solr server?

2011-08-30 Thread Satish Talim
But how to throw? As a stream of bits? Satish On Tue, Aug 30, 2011 at 5:39 PM, Federico Fissore wrote: > Satish Talim, il 30/08/2011 05:42, ha scritto: > [...] > > >> Is there a work-around wherein I can send an OpenBitSet object? >> >> > JavaBinCodec (used by

Re: How to send an OpenBitSet object from Solr server?

2011-08-30 Thread Satish Talim
I was not referring to Lucene's doc ids but the doc numbers (unique key) Satish On Tue, Aug 30, 2011 at 9:28 PM, Chris Hostetter wrote: > > : We have a need to query and fetch millions of document ids from a Solr > 3.3 > : index and convert the same to a BitSet. To speed things up, we want to

shareSchema="true" - location of schema.xml?

2011-08-30 Thread Satish Talim
I have 1000's of cores and to reduce the cost of loading unloading schema.xml, I have my solr.xml as mentioned here - http://wiki.apache.org/solr/CoreAdmin namely: ... However, I am not sure where to keep the common schema.xml file? In which case, do I need the schema.xml in the conf

Re: shareSchema="true" - location of schema.xml?

2011-08-31 Thread Satish Talim
I am experimenting Solr on Windows, for now. Satish 2011/8/31 François Schiettecatte > Satish > > You don't say which platform you are on but have you tried links (with ln > on linux/unix) ? > > François > > On Aug 31, 2011, at 12:25 AM, Satish Talim wrote: > &

Analyzer Tokenizer for Exact and Contains search on single field

2011-10-04 Thread Satish Talim
I am a Solr newbie. Let's say we have a field with 4 records as follows: "James" "James Edward" "James Edward Gray" "JamesEdward" a. In Solr 3.4, I want an exact search on the given field for "James Edward". Record 2 should be returned. b. Next on the same field, I want to check whether "James"

SEVERE: org.apache.solr.common.SolrException: Error loading class 'solr.ICUTokenizerFactory'

2011-08-02 Thread Satish Talim
I am using Solr 3.3 on a Windows box. I want to use the solr.ICUTokenizerFactory in my schema.xml and added the fieldType name="text_icu" as per the URL - http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.ICUTokenizerFactory I also added the following files to my apache-solr-3.3.0\

Re: SEVERE: org.apache.solr.common.SolrException: Error loading class 'solr.ICUTokenizerFactory'

2011-08-02 Thread Satish Talim
analysis-extras jar itself? thats what has this factory. > > On Tue, Aug 2, 2011 at 5:03 AM, Satish Talim > wrote: > > I am using Solr 3.3 on a Windows box. > > > > I want to use the solr.ICUTokenizerFactory in my schema.xml and added the > > fieldType na

Re: SEVERE: org.apache.solr.common.SolrException: Error loading class 'solr.ICUTokenizerFactory'

2011-08-03 Thread Satish Talim
Guys, I am still stuck. Any help? Thanks, Satish On Tue, Aug 2, 2011 at 5:23 PM, Robert Muir wrote: > did you add the analysis-extras jar itself? thats what has this factory. > > On Tue, Aug 2, 2011 at 5:03 AM, Satish Talim > wrote: > > I am using Solr 3.3 on a Windows box.

Multiple Cores on different machines?

2011-08-08 Thread Satish Talim
A quick question - is it possible to have 2 cores in Solr on two different machines? Satish

Re: Multiple Cores on different machines?

2011-08-09 Thread Satish Talim
Chris, sorry for not being clear when I asked the question. We are still experimenting with Solr. We have 2 tables in Postgres that we want to migrate to Solr for faster query results. One index is of static data and the other related index would be of data that changes once or twice a month. Some