RE: Urgent Help Please: "Resource temporarily unavailable"

2008-08-06 Thread Alex Wang
IndexReader and IndexWriter are thread safe. Beside, I have no explicit multi-threading in our own code. Thanks again! Alex Wang CrossView Inc. Office: 416-281-6888 Email: [EMAIL PROTECTED] Web: http://www.crossview.com

Lucene Concurrency Issue

2008-08-06 Thread Alex Wang
concurrent add/delete/search happens. Is there any general guidelines that you can share? Thanks in advance! Alex

RE: Lucene Concurrency Issue

2008-08-07 Thread Alex Wang
Thanks Mark and Jason for your responses and your contrib to Lucene. I will try to dig into them and incorporate the ideas into my app. Thanks again! Alex >-Original Message- >From: Jason Rutherglen [mailto:[EMAIL PROTECTED] >Sent: Thursday, August 07, 2008 10:07 AM >T

Better way for use lucene search in ejb

2006-12-24 Thread Alex Novik
e? Thanks so much for any help you can give me. Alex. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re[2]: Better way for use lucene search in ejb

2006-12-29 Thread Alex Novik
s with java 1.4. - Many ( > 100) call for each client. - Index less then 1 documents. - Index changed very rare. - can't use MBean as JBoss. - can't use java 1.5 Second question: Can i use ParallelMultiSearcher(searchables) in JCA 1.0 as Singleton object for all clients. &

More than 32 required/prohibited clauses in query

2005-12-27 Thread Alex Kiselevski
Hi, I got a strange exception "More than 32 required/prohibited clauses in query" in using Boolean Query Is there any way to avoid it ? Thanks in advance Alexander Kiselevski The information contained in this message is proprietary of Amdocs, protected from disclosure, and may be

RE: More than 32 required/prohibited clauses in query

2005-12-27 Thread Alex Kiselevski
n. If you want to stick with 1.4, try restructuring your query to avoid this restriction. -Yonik On 12/27/05, Alex Kiselevski <[EMAIL PROTECTED]> wrote: > I got a strange exception "More than 32 required/prohibited clauses in > query" in using Boolean Query >

RE: More than 32 required/prohibited clauses in query

2005-12-27 Thread Alex Kiselevski
ne in the latest 1.9 development version. If you want to stick with 1.4, try restructuring your query to avoid this restriction. -Yonik On 12/27/05, Alex Kiselevski <[EMAIL PROTECTED]> wrote: > I got a strange exception "More than 32 required/prohibited clauses in > query" in

RE: More than 32 required/prohibited clauses in query

2005-12-27 Thread Alex Kiselevski
limitation, gone in the latest 1.9 development version. If you want to stick with 1.4, try restructuring your query to avoid this restriction. -Yonik On 12/27/05, Alex Kiselevski <[EMAIL PROTECTED]> wrote: > I got a strange exception "More than 32 required/prohibited clauses in &

RE: More than 32 required/prohibited clauses in query

2005-12-27 Thread Alex Kiselevski
Thanks, It works, I took binary jar from Luke site -Original Message- From: Erik Hatcher [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 27, 2005 8:25 PM To: java-user@lucene.apache.org Subject: Re: More than 32 required/prohibited clauses in query On Dec 27, 2005, at 12:38 PM, Murali

How Lucene works with DB

2005-03-28 Thread Alex Kiselevski
Hi, I work with Lucene in file system. Please give me some links or tips how to work with Lucene and Data Base. Thanks in advance Alex Kiselevski +9.729.776.4346 (desk) +9.729.776.1504 (fax) AMDOCS > INTEGRATED CUSTOMER MANAGEMENT The information contained in this message is propriet

RE: Is there a thai language analyzer available

2005-06-06 Thread Alex Kiselevski
Randy, Did you find any solution for Hebrew analyzer ? Alex Kiselevski +9.729.776.4346 (desk) +9.729.776.1504 (fax) AMDOCS > INTEGRATED CUSTOMER MANAGEMENT -Original Message- From: Randy Darling [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 10:22 PM To: java-u

searchable mailing list archive

2005-07-26 Thread Alex Krohn
lease feel free to email me off list. Cheers, Alex - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: searchable mailing list archive

2005-07-27 Thread Alex Krohn
e have a separate lucene daemon that handles all inserts, updates, deletes and searches. Cheers, Alex - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Regex for legal user search input

2005-07-27 Thread Alex Kiselevski
Erik, Just to make it clear for me. The last Lucene version supports interior +/-. So, how looks the query that deals with "BOOK NAME" as keyword fields And I want to find C++ tutorial ? Thanks in advanvce Alex Kiselevski Development Expert, Amdocs Advanced Technologies +9.729.776.

Exception in IndexWriter recreating

2005-09-26 Thread Alex Kiselevski
at com.stp.test.STPStorePanel$IndexThread.run(STPStorePanel.java:649) Alex Kiselevski Solution Engineer Pre Sales +9.729.776.7086 (desk) +9.729.776.1504 (fax) AMDOCS > INTEGRATED CUSTOMER MANAGEMENT The information contained in this message is proprietary of Amdocs, protected from disclos

IndexWriter exception

2005-09-27 Thread Alex Kiselevski
a:129) at com.stp.test.STPStorePanel$IndexThread.run(STPStorePanel.java:649) Alex Kiselevski Solution Engineer Pre Sales +9.729.776.7086 (desk) +9.729.776.1504 (fax) AMDOCS > INTEGRATED CUSTOMER MANAGEMENT The information contained in this message is proprietary o

IndexWriter recreating

2005-10-06 Thread Alex Kiselevski
a:129) at com.stp.test.STPStorePanel$IndexThread.run(STPStorePanel.java:649) Alex Kiselevski Solution Engineer Pre Sales +9.729.776.7086 (desk) +9.729.776.1504 (fax) AMDOCS > INTEGRATED CUSTOMER MANAGEMENT Alex Kiselevski Solution Engineer Pre Sales +9.729.776.70

Search with whitespaces

2009-09-25 Thread Alex Bredariol Grilo
these documents could be found and I'd like to do it for a general case, like trying to search the words joining the word before or after. How could I do that? Is there an analyzer which tokenize like that? Thank you Alex

Re: Search with whitespaces

2009-09-25 Thread Alex Bredariol Grilo
tion (assuming field is f1): > > f1:notebook f1:"note book" > > which means (notebook OR "note book"), 2nd condition is phrase > search. > > Best regards, Lisheng > > -Original Message- > From: Alex Bredariol Grilo [mailto:abgr...@gmail.com] &g

Re: Search with whitespaces

2009-09-29 Thread Alex Bredariol Grilo
To use ShingleFilter, I'd like to change its TOKEN_SEPARATOR, but it's final. Furthermore, I tryed to compile its source code but the compiler isn't finding some methods like addAtribute. Does someone know how could I do that? Alex On Fri, Sep 25, 2009 at 2:42 PM, Robert Muir wr

Re: Build vs. Buy?

2006-02-09 Thread P. Alex. Salamanca R.
On the other hand, if you want be the most cheapest, why don't give a chance to google search appliance?

55 Ways to Have Fun With Google

2006-09-13 Thread P. Alex. Salamanca R.
http://www.googlified.com/55fun.php Es muy entretenido, uno empieza a leer y no puede parar... la versión en pdf del libro la encuentran aquí: http://www.55fun.com/book.pdf -- Gracias por su atención. Cordial saludo, Alex. S.

<    1   2