Click here to Skip to main content
15,895,084 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Javascript DateAdd function Pin
Nitin198125-Aug-06 0:00
Nitin198125-Aug-06 0:00 
AnswerRe: Javascript DateAdd function Pin
Guffa25-Aug-06 2:33
Guffa25-Aug-06 2:33 
QuestionASP.NET 1.1 WebService works fine when called from JavaScript -- but when a simple parameter is passed from JavaScript using a SOAP Envelope, it is not received in the WebService - what gives ? Pin
Fine Foot24-Aug-06 10:04
Fine Foot24-Aug-06 10:04 
AnswerRe: ASP.NET 1.1 WebService works fine when called from JavaScript -- but when a simple parameter is passed from JavaScript using a SOAP Envelope, it is not received in the WebService - what gives ? Pin
Fine Foot24-Aug-06 11:17
Fine Foot24-Aug-06 11:17 
QuestionAnything like codebehind for .asp? [modified] Pin
veekay824-Aug-06 9:44
veekay824-Aug-06 9:44 
AnswerRe: Anything like codebehind for .asp? Pin
Guffa24-Aug-06 10:56
Guffa24-Aug-06 10:56 
QuestionPage Performance Pin
Amit Kumar G24-Aug-06 7:40
Amit Kumar G24-Aug-06 7:40 
AnswerRe: Page Performance Pin
Guffa24-Aug-06 11:24
Guffa24-Aug-06 11:24 
Ïf you really want to cache that amount of data, I would reccomend that you create a class for the product data instead of using a DataTable, to minimize the overhead.

In most cases I would recommend that you just fetch the data from the database, though. Caching all the data uses a lot of memory, and memory is one of the most sensetive resources of the server.

Fetching the data from the database instead of keeping it in memory also scales much better, which is important as you expect the number of products to increase. A database can easily store millions of products, much more than you can hold in memory.

I think that you should start by planning how you should display the products to the user. If you display six products per page from a category with 5000 products, there is more than 800 pages to flip through. Noone will start flipping through all those pages to find a product, so you need a better way to present them to the user.

The weaker link here is not the database, but the user. A database request can easily handle more products than any user can grasp. You just have to find the way to present the products that the user is interrested in.


---
b { font-weight: normal; }

GeneralRe: Page Performance Pin
Amit Kumar G24-Aug-06 12:49
Amit Kumar G24-Aug-06 12:49 
AnswerRe: Page Performance Pin
Guffa24-Aug-06 19:01
Guffa24-Aug-06 19:01 
Questionjavascript include Pin
peterzorbas24-Aug-06 7:17
peterzorbas24-Aug-06 7:17 
AnswerRe: javascript include Pin
Nitin198124-Aug-06 19:05
Nitin198124-Aug-06 19:05 
QuestionWeb Site Installation - Port issue Pin
alexfromto24-Aug-06 4:59
alexfromto24-Aug-06 4:59 
Questionpassing controlid in javascript Pin
TintinV3ck24-Aug-06 4:06
TintinV3ck24-Aug-06 4:06 
AnswerRe: passing controlid in javascript Pin
TintinV3ck24-Aug-06 4:16
TintinV3ck24-Aug-06 4:16 
QuestionHelp! Download file dialog box has garbage words in ASP! Pin
Lane Yu24-Aug-06 0:27
Lane Yu24-Aug-06 0:27 
QuestionAutosave using Ajax in every 10 sec. with .Net Pin
Amit Agarrwal23-Aug-06 20:33
Amit Agarrwal23-Aug-06 20:33 
AnswerRe: Autosave using Ajax in every 10 sec. with .Net Pin
JimmyRopes1-Sep-06 20:21
professionalJimmyRopes1-Sep-06 20:21 
GeneralRe: Autosave using Ajax in every 10 sec. with .Net Pin
Amit Agarrwal1-Sep-06 21:06
Amit Agarrwal1-Sep-06 21:06 
GeneralRe: Autosave using Ajax in every 10 sec. with .Net Pin
JimmyRopes3-Sep-06 4:39
professionalJimmyRopes3-Sep-06 4:39 
QuestionSite Publishing in search sites Pin
maximf23-Aug-06 18:25
maximf23-Aug-06 18:25 
AnswerRe: Site Publishing in search sites Pin
Boro_Bob23-Aug-06 23:09
Boro_Bob23-Aug-06 23:09 
QuestionHide titlebar of browser without fullscreen Pin
jagmit2023-Aug-06 7:40
jagmit2023-Aug-06 7:40 
AnswerRe: Hide titlebar of browser without fullscreen Pin
Paddy Boyd23-Aug-06 23:38
Paddy Boyd23-Aug-06 23:38 
GeneralRe: Hide titlebar of browser without fullscreen Pin
jagmit2024-Aug-06 7:22
jagmit2024-Aug-06 7:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.