Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Java Help > Re: How do i sp...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 3 of 5 Topic 15877 of 16566
Post > Topic >>

Re: How do i speed up reading Lucene search results

by grasp06110 <grasp06110@[EMAIL PROTECTED] > Mar 13, 2008 at 03:29 AM

On Mar 13, 1:13 am, Roedy Green <see_webs...@[EMAIL PROTECTED]
>
wrote:
> On Wed, 12 Mar 2008 08:55:24 -0700 (PDT), rhino1130
> <rboeckm...@[EMAIL PROTECTED]
> wrote, quoted or indirectly quoted
> someone who said :
>
> >  So I convert the hits to a dataset and that to xml.  To
> >complicate things, the term searched in my boolean query is returning
> >32,000 records. Do I need them all?  Probably not but I have to return
> >them in my webservice.
>
> You problem is a grabbed too much stuff.  Think about what you could
> do to your query to prune that list down.
> --
>
> Roedy Green Canadian Mind Products
> The Java Glossaryhttp://mindprod.com

I'm not familiar with this particular technology but it looks like you
are marshaling all of the data on the server before passing it through
to the client.  It should be possible to push the data to the client
one (or some number of records) at a time.

Instead of:

for(int i=0;i<n;i++) {
  Collection data = putDataInSomeCollection();
}
sendDataToClient(data);

Something like:
for(int i=0;i<n;i++) {
  Object obj putSingleRecordIntoSomeDataStructure();
  sendSmallDataStructureToClient();
}

Hope this helps,
John
 




 5 Posts in Topic:
How do i speed up reading Lucene search results
rhino1130 <rboeckmann@  2008-03-12 08:55:24 
Re: How do i speed up reading Lucene search results
Roedy Green <see_websi  2008-03-13 05:13:27 
Re: How do i speed up reading Lucene search results
grasp06110 <grasp06110  2008-03-13 03:29:27 
Re: How do i speed up reading Lucene search results
rhino1130 <rboeckmann@  2008-03-21 13:40:21 
Re: How do i speed up reading Lucene search results
Rob <cbmc64@[EMAIL PRO  2008-03-26 10:00:30 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sat Nov 22 16:31:23 CST 2008.