> From search include (Every page has a search area): > - query objState.list() [to fill dropdown] > - query objCity.list( state ) [to fill dropdown] > - query objPrice.listRanges() [to fill dropdown] > - query objCategory1.list() [to fill dropdown] > - query objCategory2.list() [to fill dropdown]
One word: cache. You pull all this information and generate the same snippet of HTML on every single page request. The first time you generate that snippet, you should save it to a file. From that point on, just include the file. Every five minutes regenerate the file just in case anything has changed (such as the list of categories). I'm making assumptions and glossing over a lot of details, but that's the gist of what you need to do. Instead of figuring out how to do 1,000,000 gets / minute, you should focus on how to get the same end product with 100 gets / minute. Patrick -- Patrick McElhaney 704.560.9117 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CFCDev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfcdev?hl=en -~----------~----~----~----~------~----~------~--~---
