|
 |
asp_web_howto thread: Optimization of a big search application
Message #1 by "Karan Bajoria" <karan@t...> on Tue, 9 Jul 2002 13:13:59
|
|
Hi Viewer,
I am building a big search application.The application will have 21
parameters to search on.Currently i am getting the recordset from the
database and storing the records in a text file.Along with the records i
am also storing a number which is percentage of conditions matched out of
total conditions.Then i sort the records on the basis on the percentage
matched.Then i print the records from the text file.
I want to improve this application as this application may work when the
no.of records is not in lakhs when that number crosses the application
will become relatively slow.
Please feel free to send me your suggetions.
Regards
Karan Bajoria
Message #2 by kyle.b.willman@u... on Tue, 9 Jul 2002 07:10:48 -0500
|
|
If I had to guess, your application will bog down no matter what
methodology you use due to the disk access of recovering any records from a
text file. Especially if you are expecting a decent amount of records. I
would suggest using a true DB application.
Kyle B. Willman
PricewaterhouseCoopers LLP
Office: xxx.xxx.xxxx
Cell: xxx.xxx.xxxx
"Karan Bajoria"
<karan@t...> To: "ASP Web HowTo" <asp_web_howto@p...>
07/09/2002 08:13 cc:
AM Subject: [asp_web_howto] Optimization of a big search application
Please respond to
"ASP Web HowTo"
Hi Viewer,
I am building a big search application.The application will have 21
parameters to search on.Currently i am getting the recordset from the
database and storing the records in a text file.Along with the records i
am also storing a number which is percentage of conditions matched out of
total conditions.Then i sort the records on the basis on the percentage
matched.Then i print the records from the text file.
I want to improve this application as this application may work when the
no.of records is not in lakhs when that number crosses the application
will become relatively slow.
Please feel free to send me your suggetions.
Regards
Karan Bajoria
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
_________________________________________________________________
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential
and/or privileged material. Any review, retransmission,
dissemination or other use of, or taking of any action in reliance
upon, this information by persons or entities other than the
intended recipient is prohibited. If you received this in error,
please contact the sender and delete the material from any
computer.
Message #3 by "karan" <karan@t...> on Tue, 9 Jul 2002 17:46:00 +0530
|
|
Hi Viewer,
Well i am using MS SQL Server at the backend.If u want to see the actual
application please feel free to log on to
:"www.singlefriendsofbillw.com".The login id as passwords is deep.After
logging on u will see many options on the left side of your screen.Choose
Advanced Search.This is my application.As i have said that i am storing the
records in a text file ,well better options do i have.
Regards
Karan Bajoria
----- Original Message -----
From: <
To: ASP Web HowTo <asp_web_howto@p...>
Sent: Tuesday, July 09, 2002 5:40 PM
Subject: [asp_web_howto] Re: Optimization of a big search application
>
> If I had to guess, your application will bog down no matter what
> methodology you use due to the disk access of recovering any records from
a
> text file. Especially if you are expecting a decent amount of records. I
> would suggest using a true DB application.
>
> Kyle B. Willman
> PricewaterhouseCoopers LLP
> Office: xxx.xxx.xxxx
> Cell: xxx.xxx.xxxx
>
>
>
> "Karan Bajoria"
> <karan@t...> To: "ASP Web HowTo"
<asp_web_howto@p...>
> 07/09/2002 08:13 cc:
> AM Subject: [asp_web_howto]
Optimization of a big search application
>
> Please respond to
> "ASP Web HowTo"
>
>
>
>
>
>
> Hi Viewer,
> I am building a big search application.The application will have 21
> parameters to search on.Currently i am getting the recordset from the
> database and storing the records in a text file.Along with the records i
> am also storing a number which is percentage of conditions matched out of
> total conditions.Then i sort the records on the basis on the percentage
> matched.Then i print the records from the text file.
> I want to improve this application as this application may work when the
> no.of records is not in lakhs when that number crosses the application
> will become relatively slow.
> Please feel free to send me your suggetions.
> Regards
> Karan Bajoria
>
> ---
>
> Improve your web design skills with these new books from Glasshaus.
>
> Usable Web Menus
> http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
> http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
> http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20
>
>
>
>
> _________________________________________________________________
> The information transmitted is intended only for the person or
> entity to which it is addressed and may contain confidential
> and/or privileged material. Any review, retransmission,
> dissemination or other use of, or taking of any action in
reliance
> upon, this information by persons or entities other than the
> intended recipient is prohibited. If you received this in
error,
> please contact the sender and delete the material from any
> computer.
>
>
>
> ---
>
> Improve your web design skills with these new books from Glasshaus.
>
> Usable Web Menus
> http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
> http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
> http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20
|
|
 |