I'm trying to conceive of the best design to tackle this. I'm envisaging a scenario where there's so much data many calls will need to be made from the client (imagine a search engine) to view it all.
Can someone suggest a good model for me, or perhaps suggest some links? I would appreciate it.
Regards
James
-
Passing vast amounts of data to the client... (2 messages)
- Posted by: James Killick
- Posted on: January 12 2001 12:18 EST
Threaded Messages (2)
- Passing vast amounts of data to the client... by Tyler Jewell on January 12 2001 13:41 EST
- Passing vast amounts of data to the client... by James Killick on January 13 2001 08:29 EST
-
Passing vast amounts of data to the client...[ Go to top ]
- Posted by: Tyler Jewell
- Posted on: January 12 2001 13:41 EST
- in response to James Killick
There is a great article on this at the developer.bea.com site. It's a long and involved article, but the basic jist that the author recommends is to defer most of the complex paging logic to the database so that you will get optimized, just in time data loading (you will only load and send the data that the client is requesting when the client requests it).
Take a look at:
http://developer.bea.com/tips/00_java/jdbc.html
Take it easy and good luck!
Tyler -
Passing vast amounts of data to the client...[ Go to top ]
- Posted by: James Killick
- Posted on: January 13 2001 08:29 EST
- in response to Tyler Jewell
Tyler
Thanks for your recommendation - this is indeed a very good article.
Regards
James