[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Toby Tremayne
s it only run on Apache? Is it possible to get it working on the Win 2003 / IIS platform?   thanks.   From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Toby TremayneSent: Monday, 5 June 2006 2:27 PMTo: cfaussie@googlegroups.comSubject: [cfaussie] Re: Verity sp

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Toby Tremayne
it only run on Apache? Is it possible to get it working on the Win 2003 / IIS platform?   thanks.   From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Toby TremayneSent: Monday, 5 June 2006 2:27 PMTo: cfaussie@googlegroups.comSubject: [cfaussie] Re: Verity sp

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Ryan Sabir
@googlegroups.comSubject: [cfaussie] Re: Verity spits the dummy and just a few records! I've used lucene to index hundreds of thousands of records without a discernable problem so far.  You don't use cfsearch to search them, but  you can put together some pretty simple code that will do the same

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Toby Tremayne
I've used lucene to index hundreds of thousands of records without a discernable problem so far.  You don't use cfsearch to search them, but  you can put together some pretty simple code that will do the same job.  I have a couple of cfcs that do it for me - they're somewhat customized to the apps

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Toby Tremayne
Hi Jeremy, by all means - drop me a line off list and I'll chat to you about it. cheers, Toby On 05/06/2006, at 2:18 PM, <[EMAIL PROTECTED]> wrote: > > Toby, > > I too would be interested in setting up lucene. Any code/documents you > have let us know. We are seriously going to ditch

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread
Woops one more thing get rid of the query="rsResume" My bad. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from thi

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread
SELECTR.resumeIdentity , CASE WHEN R.candidateIdentity IS NULL THEN 0 ELSE R.candidateIdentity END AS candidateIdentity , R.resumeAsText , R.uniqueFileName , R.fileExtension , R.originalFileName , R.dateStamp , S.salutationTitle , P.fi

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread
Toby, I too would be interested in setting up lucene. Any code/documents you have let us know. We are seriously going to ditch Verity becuase of all the issues we have had with it Jeremy --~--~-~--~~~---~--~~ You received this message because you are subscribed

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Taco Fleur
Hi Toby,   that is much appreciated, I might take you up on that offer. Can you tell me; have you been indexing over a 1,000 records with Lucene? Not sure how that works, but would you use cfsearch as well to search those collections?   Thanks in advance.  On 6/5/06, Toby Tremayne <[EMAIL PROTECTED

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Taco Fleur
I must be really out of the LOOP ;-)   I cannot see how you can index a query result in parts, with a loop?   Following is how we currently do it;    name="rsResume"  datasource="#application.datasource#"> SELECT    R.resumeIdentity , CASE  WHEN R.candidateIdentity IS NULL THEN 0  ELSE

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Toby Tremayne
Hi Taco, in terms of Lucene (the apache version) I've been using it extensively and have nothing but raves to report. It actually doesn't need quite as much setup as it seems from the outside, and it's incredibly powerful - not to mention very very fast. If you go down that rout

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread
We simply did a loop over it. Actually we were indexing documents. But you can use the same theory. Also in ColdFusion 7 there is a sleep function which will allow you to sleep the server until a particular process is done. This would depend on how intense the processing is. hth jeremy --~--~-

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread Taco Fleur
Hi Jeremy, Thanks for that confirmation.   Would love to know more about indexing the query in batches, how do you that (or is that a silly question)?   Thanks.  On 6/5/06, <[EMAIL PROTECTED]> wrote: Hi Taco,Yes there are some issues with CFMX7 Verity. I spent endless hourstrying to find ways to g

[cfaussie] Re: Verity spits the dummy and just a few records!

2006-06-04 Thread
Hi Taco, Yes there are some issues with CFMX7 Verity. I spent endless hours trying to find ways to get it to work correctly. Simple. It doesn't We ended up having to index in parts. I.e. batch of 10 or 20 depending on what your doing. It was a REAL issue and still is. ITs one major issue I believ