Forum Moderators: open

Message Too Old, No Replies

Search engine in C# .net

         

morpheus83

7:34 am on Oct 8, 2003 (gmt 0)

10+ Year Member Top Contributors Of The Month



I have recently started working on C#. I need to deploy a search engine for a section of my website. Can anyone please suggest an easy of making and deploying it?

korkus2000

3:51 pm on Oct 8, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Will it basically be searching through a database, or are you going to parse files?

duckhunter

3:35 am on Oct 9, 2003 (gmt 0)

10+ Year Member



I'm running the Google API in .NET and it searches my site better than I could. Go figure :)

Assuming your pages are indexed:
[google.com ]

morpheus83

4:12 am on Oct 9, 2003 (gmt 0)

10+ Year Member Top Contributors Of The Month



It will be searching a SQL database

korkus2000

1:48 pm on Oct 9, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I would create a C# class that you can instantiate to do the search for you. You could always pass the search string in your constructor. You could also bring back the results in a datagrid populated from a dataset created by the object.

TheNige

1:38 am on Oct 14, 2003 (gmt 0)

10+ Year Member



depending what kind of fields you are searching and how big your database is, it might be good to check out SQL Full Text indexes as well.