Re: to reduce indexing time

2014-03-05 Thread Toby Lazar
safe? Thank you Shawn and Ahmet, Toby *** Toby Lazar Capital Technology Group Email: tla...@capitaltg.com Mobile: 646-469-5865 *** On Wed, Mar 5, 2014 at 4:46 PM, Shawn Heisey wrote: > On 3/5/2014 2:31 PM, Toby Lazar wrote

Re: to reduce indexing time

2014-03-05 Thread Toby Lazar
at 4:34 PM, Ahmet Arslan wrote: > Hi Toby, > > SolrJ uses javabin by default. > > Ahmet > > > On Wednesday, March 5, 2014 11:31 PM, Toby Lazar > wrote: > I believe SolrJ uses XML under the covers. If so, I don't think you would > improve performance by swit

Re: to reduce indexing time

2014-03-05 Thread Toby Lazar
I believe SolrJ uses XML under the covers. If so, I don't think you would improve performance by switching to SolrJ, since the client would convert it to XML before sending it on the wire. Toby *** Toby Lazar Capital Technology Group Email: tla...@capitalt

Re: Replicating Between Solr Clouds

2014-03-05 Thread Toby Lazar
Unless Solr is your system of record, aren't you already replicating your source data across the WAN? If so, could you load Solr in colo B from your colo B data source? You may be duplicating some indexing work, but at least your colo B Solr would be more closely in sync with your colo B data.

Re: Facet field query on subset of documents

2013-12-20 Thread Toby Lazar
Luis (or anyone else), Did you ever find a solution for this problem? If not, is querying twice the way to go? I'm looking to do the same with no luck yet. Thanks, Toby *** Toby Lazar Capital Technology Group Email: tla...@capitaltg.com Mobile: 64

Re: How to get similarity score between 0 and 1 not relative score

2013-10-31 Thread Toby Lazar
I think you are looking for something like this, though you can omit the fq section: http://localhost:8983/solr/collection/select?abc=text:bob&q={!func}scale(product(query($abc),1),0,1)&fq={! frange l=0.9}$q Also, I don't understand all the fuss about normalized scores. In the linked example, I

Re: pivot range faceting

2013-10-20 Thread Toby Lazar
application? Thank you again for your help. Toby *** Toby Lazar Capital Technology Group Email: tla...@capitaltg.com Mobile: 646-469-5865 *** On Sun, Oct 20, 2013 at 2:39 PM, Upayavira wrote: > > > On Sun, Oct 20, 2013,

pivot range faceting

2013-10-19 Thread Toby Lazar
Is it possible to get pivot info on a range-faceted query? For example, if I want to query the number of orders placed in January, February, etc., I know I can use a simple range search. If I want to get the number of orders by category, I can do that easily by faceting on category. I'm wonderin