|
From: <am...@ma...> - 2003-10-24 18:04:17
|
Wonderful news Ben !! Thanks for taking the time to implement MFQP, I cant wait to try that out. I still need to sort this PHP issue where results/hits dont show and also now I noticed some lag for example if I click Optimize in cltest.php sometimes it takes long time to execute, or if you do Index to create a new document the first time you do it, it's lagging for a minute or two and then fails to add but says it did add a document?! This did not use to happen prior to adding resources or whatever other changes have been made after Rob did his patch (with Rob's patch on the old version it works just fine) On this side there's really nothing to php_clucene.c, I've just added an extra long paremeter infront of most functions to include the resource integer, and on the clucene.cpp wrapper I've added ifdefs wherever there's a call to a _UNICODE function, so for example instead of: wchar_t* wfield = Misc::charToWide(field); I just do a quick hack: char_t* wfield = strdup(field); Now this works fine, or at least it used to be fine in the prior versions before the resource business, and now I'm not sure if this is correct anymore, but it does work even with resources (which shouldnt really make a difference) Any insight would be appreciated... -pedja ----- Original Message ----- From: "Ben van Klinken" <s40...@st...> To: <clu...@li...> Sent: Wednesday, October 22, 2003 11:04 PM Subject: [CLucene-dev] 0.8.6 > Hi, > > New release up. Sorry, not on CVS yet. > Changes were > * implemented MultiSearch and MultiFieldQueryParser > > few other minor changes. > > cheers, > ben > > > ------------------------------------------------------- > This SF.net email is sponsored by OSDN developer relations > Here's your chance to show off your extensive product knowledge > We want to know what you know. Tell us and you have a chance to win $100 > http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers > > |