Re: Understanding performance characteristics of the new point types

2016-11-02 Thread Fuad Efendi
Hi florian, If my understanting is correct, you are using IntPoint to index 4 different document types which is overkill; why not to try classic “non-tokenized” keyword field (a.k.a. “legacy string”) for document types? Cardinality is only four for document types. -- Fuad Efendi (416) 993

Re: Implementing own Analyser components.

2016-10-31 Thread Fuad Efendi
still ned to index tokens such as “Brand:Microsoft”, “Sentiment:Positive”, “DET:123” and so on, you can do it in Lucene, by defining fields: Brand, Sentiment, DET, PRON, VERB, and so on. I hope I helped a little :) thanks, Fuad Efendi Search Relevancy Tuning http://www.tokenizer.ca On

RE: Making lucene indexing multi threaded

2014-10-27 Thread Fuad Efendi
multithreaded? I used multiple threads (64-128) from client workstation to submit Solr documents concurrently to (local / or remote) Solr instance, via SolrJ client. - Fuad Efendi -Original Message- From: Jason Wu [mailto:jasonha...@gmail.com] Sent: October-27-14 10:41 AM To: java-user

RE: Save 45% and Join the Search Revolution!

2010-09-27 Thread Fuad Efendi
Sorry about previous Email if it was delivered 'weird'; one is Ok, another one is crazy, and there is difference between DEV and JAVA-USER in mail delivery settings (HTML). but I can't find which one was wrong.

FW: Save 45% and Join the Search Revolution!

2010-09-27 Thread Fuad Efendi
Click here to view in your browser.

RE: Wildcard searches????

2010-02-05 Thread Fuad Efendi
R1DE+Browser/NetFront/3.4+Profile/MIDP- > 2.1+Configuration/CLDC-1.1+JavaPlatform/JP8.4.1+UP.Link/6.3.1.20.0 > > > > > > > >2 > > > >Firefox > > > > Mozilla/4.0+SonyEricssonC905v/R1DE+Browser/NetFr

RE: Wildcard searches????

2010-02-05 Thread Fuad Efendi
match > should take place if a document useragent starts with the value of the > users useragent. > > In theory, having a startsWith "function / locig are easy enough to > implement in C# / T-SQL, but how on earth should I do this in SolR / > Lucene? > > Regards &

RE: Wildcard searches????

2010-02-05 Thread Fuad Efendi
Niclas, I looked at your initial post, you are creating document with field "abc*" - nothing related to "wildcard query"! Of course, query [useragents:abcdefghijklm] will return no results, and [q=useragents:abc] no results, but [q=useragents:abc*] will return something. text_nav is specific SO

Re: Exception while doing sorting

2008-09-17 Thread Fuad Efendi
Increase memory. Lucene uses FieldCache for sorting on non-tokenized field and tries to maintain fields from all your 4 millions documents, even if you need to sort only 4000 docs. == http://www.tokenizer.org/bot.html Quoting Ganesh - yahoo <[EMAIL PROTECTED]>: Hello all, I