RE: Improving Zend lucene search - general guidance?

2010-02-19 Thread Zhang, Lisheng
Hi, Thanks very much for reply! Yes, PHP is stateless, just like old CGI. All I can do is to get result efficiently within the given query. But we already got into PHP, I will see what the best I can do. Best regards, Lisheng -Original Message- From: Chris Lu [mailto:chris...@gmail.com]

Re: Improving Zend lucene search - general guidance?

2010-02-19 Thread Chris Lu
PHP doesn't have java like "static" variables, right? They are "stateless". All the information like term info that's loaded in the memory will be gone for the next search. You should use DBSight if you just have one week. -- Chris Lu - Instant Scalable Full-Text Searc

Improving Zend lucene search - general guidance?

2010-02-19 Thread Zhang, Lisheng
Hi, I have been using Java/lucene for a few years and it works well for me. Recently we started to use PHP/lucene from Zend, I found some problems, especially that for each query, it immediately loads whole term id/score (other info..) array into memory, this would cause memory exhausion if t

Re: lucene webinterface

2010-02-19 Thread luciusvorenus
With LIMO "" Docu /home/lucius/../...//index This param info is used by LIMO """ and i get this mesagge org.apache.jasper.JasperException: java.security.AccessControlException: access denied (java.io.FilePermission /home/lucius/.././.../index/segments read) org.apache.j

Re: Seattle Hadoop/Lucene/NoSQL Meetup; Wed Feb 24th, Feat. MongoDB

2010-02-19 Thread Nick Dimiduk
Reminder: this month's Seattle Hadoop Meetup is this Wednesday. Don't forget to RSVP! On Tue, Feb 16, 2010 at 6:09 PM, Bradford Stephens < bradfordsteph...@gmail.com> wrote: > Greetings, > > It's time for another awesome Seattle Hadoop/Lucene/Scalability/NoSQL > Meetup! > > As always, it's at the

Re: lucene webinterface

2010-02-19 Thread Erik Hatcher
Again, try LIMO. But what do you mean, no success with Solr? Please elaborate on the issues you encountered and what you tried. Erik On Feb 19, 2010, at 2:41 PM, luciusvorenus wrote: no success with solr Anybody another suggestion ? luciusvorenus wrote: I already have the

Re: lucene webinterface

2010-02-19 Thread luciusvorenus
no success with solr Anybody another suggestion ? luciusvorenus wrote: > > > I already have the data indexed (a database table) and also i have class > to search.. just simple > I would like just a search box ... > > Thank u > > > polx wrote: >> >> >> On 16-févr.-10, at 17:40, lucius

Re: Sorting case insensitive wildcard queries

2010-02-19 Thread kevinkilroy
Hi Erick, Thanks for your input. I have 2 annotation fields (Sorry, I don't have access to the code at the moment to paste in). but basically, I am sorting on an un-tokenized field. The problem I have is that I am using wildcard queries, & from what I believe they don't get the filters applied

Can Zoie (or something else) help me to write/update/delete to sharded index?

2010-02-19 Thread jchang
I want to shard my index, which is currently a Lucene 3.0.0 solution with my own service wrapper around it. Looking at Katta and Solr, I can see how to do this pretty easily, but Katta and Solr don't seem to offer any help for managing the index (write, update, delete). With Solor, it seems I'm

Re: RAMDirectory and inner Structure

2010-02-19 Thread Ian Lea
Hi > currently I'm working on a students project including a lucene index. It's a > kind of search engine working on extracted data from the web. > It's working pretty good, but now I'm curious about two things: > - when is it usefull to use a RAMDirectory? Is there a number of documents > in an i

RAMDirectory and inner Structure

2010-02-19 Thread Clarissa Meyer
Hi, currently I'm working on a students project including a lucene index. It's a kind of search engine working on extracted data from the web. It's working pretty good, but now I'm curious about two things: - when is it usefull to use a RAMDirectory? Is there a number of documents in an index th

Re: Sorting case insensitive wildcard queries

2010-02-19 Thread Erick Erickson
You can index (but not store) the field you want to sort on in a separate field then sort on that field. How are you sorting anyway? Your message leaves open the possibility that you're sorting on a tokenized field, which is unsupported. Fields you use to sort should be untokenized. HTH Erick On

Sorting case insensitive wildcard queries

2010-02-19 Thread kevinkilroy
Hi, I have an AnalyzerDefinition: @AnalyzerDef(name = "CustomAnalyzer", tokenizer = @TokenizerDef(factory = StandardTokenizerFactory.class), filters = { @TokenFilterDef(factory = LowerCaseFilterFactory.class) } ) This works well, as I can do case insensiti