473,385 Members | 1,780 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Search Engines

AGB
Hi all,

I know this is a little off topic but I have been tasked with
implementing a search engine in my website. Does anyone have any
suggestions...I have looked at Google and Verity.

Thanks

Nov 19 '05 #1
8 1335
why dont you use index server, it comes with win servers

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director

"AGB" <an******@gmail.com> wrote in message
news:11**********************@l41g2000cwc.googlegr oups.com...
Hi all,

I know this is a little off topic but I have been tasked with
implementing a search engine in my website. Does anyone have any
suggestions...I have looked at Google and Verity.

Thanks

Nov 19 '05 #2
Hello AGB,

Lucene.NET [1] is a great search engine and can be customized to do almost
anything you need. You will need to populate its index though.

[1] http://searchblackbox.com/lucene/index.html?ldn2

--
Matt Berther
http://www.mattberther.com
Hi all,

I know this is a little off topic but I have been tasked with
implementing a search engine in my website. Does anyone have any
suggestions...I have looked at Google and Verity.

Thanks

Nov 19 '05 #3
Matt, I'm assuming your reference is based on having actually used
Lucene.NET?
Would you talk to me --- us --- more about it? Have you used it to spider
sites?

<%= Clinton Gallagher

"Matt Berther" <mb******@hotmail.com> wrote in message
news:22***************************@news.microsoft. com...
Hello AGB,

Lucene.NET [1] is a great search engine and can be customized to do almost
anything you need. You will need to populate its index though.

[1] http://searchblackbox.com/lucene/index.html?ldn2

--
Matt Berther
http://www.mattberther.com
Hi all,

I know this is a little off topic but I have been tasked with
implementing a search engine in my website. Does anyone have any
suggestions...I have looked at Google and Verity.

Thanks


Nov 19 '05 #4
Hello clintonG,

I've used Lucene.NET to spider a stack of xml for my company's document library
creating an index with relevant searchable fields. The only difference between
what I did with Lucene and what would need to be done here is to create the
code to spider the site. Surely theres an abundance of this type of code
on the web though. Once you've done this, its just a matter of populating
the index.

One really nice thing about Lucene.NET is that the indexes generated are
completely compatible with the Jakarta Lucene project (for Java). Also, there
is a very nice API used to create/populate/search the indexes.

Let me know if there are other questions that you have.

--
Matt Berther
http://www.mattberther.com
Matt, I'm assuming your reference is based on having actually used
Lucene.NET?
Would you talk to me --- us --- more about it? Have you used it to
spider
sites?
<%= Clinton Gallagher

"Matt Berther" <mb******@hotmail.com> wrote in message
news:22***************************@news.microsoft. com...
Hello AGB,

Lucene.NET [1] is a great search engine and can be customized to do
almost anything you need. You will need to populate its index though.

[1] http://searchblackbox.com/lucene/index.html?ldn2

--
Matt Berther
http://www.mattberther.com
Hi all,

I know this is a little off topic but I have been tasked with
implementing a search engine in my website. Does anyone have any
suggestions...I have looked at Google and Verity.

Thanks

Nov 19 '05 #5
Thanks for comments Matt. I've needed search functionality for a web
services project and Lucene is looking good but the project also requires
spidering remote pages. I'll be looking around of course but have you any
referrals to spiders written in .NET?

<%= Clinton

"Matt Berther" <mb******@hotmail.com> wrote in message
news:22***************************@news.microsoft. com...
Hello clintonG,

I've used Lucene.NET to spider a stack of xml for my company's document
library creating an index with relevant searchable fields. The only
difference between what I did with Lucene and what would need to be done
here is to create the code to spider the site. Surely theres an abundance
of this type of code on the web though. Once you've done this, its just a
matter of populating the index.

One really nice thing about Lucene.NET is that the indexes generated are
completely compatible with the Jakarta Lucene project (for Java). Also,
there is a very nice API used to create/populate/search the indexes.

Let me know if there are other questions that you have.

--
Matt Berther
http://www.mattberther.com
Matt, I'm assuming your reference is based on having actually used
Lucene.NET?
Would you talk to me --- us --- more about it? Have you used it to
spider
sites?
<%= Clinton Gallagher

"Matt Berther" <mb******@hotmail.com> wrote in message
news:22***************************@news.microsoft. com...
Hello AGB,

Lucene.NET [1] is a great search engine and can be customized to do
almost anything you need. You will need to populate its index though.

[1] http://searchblackbox.com/lucene/index.html?ldn2

--
Matt Berther
http://www.mattberther.com
Hi all,

I know this is a little off topic but I have been tasked with
implementing a search engine in my website. Does anyone have any
suggestions...I have looked at Google and Verity.

Thanks


Nov 19 '05 #6
Google offers web services. Just get a free API and concatenate your
URL into the search string.

Dim strSearch as string = "inurl:http://Your.Domain/" & tbSearch.text

Nov 19 '05 #7
Hello clintonG,

I've never had to use one, so I cant make a recommendation. However, a google
search for "c# web spider code" yields an article [1] at codeproject.com
as the first hit which looks promising.

[1] http://www.codeproject.com/csharp/DavWebSpider.asp

--
Matt Berther
http://www.mattberther.com
Thanks for comments Matt. I've needed search functionality for a web
services project and Lucene is looking good but the project also
requires spidering remote pages. I'll be looking around of course but
have you any referrals to spiders written in .NET?

<%= Clinton

"Matt Berther" <mb******@hotmail.com> wrote in message
news:22***************************@news.microsoft. com...
Hello clintonG,

I've used Lucene.NET to spider a stack of xml for my company's
document library creating an index with relevant searchable fields.
The only difference between what I did with Lucene and what would
need to be done here is to create the code to spider the site. Surely
theres an abundance of this type of code on the web though. Once
you've done this, its just a matter of populating the index.

One really nice thing about Lucene.NET is that the indexes generated
are completely compatible with the Jakarta Lucene project (for Java).
Also, there is a very nice API used to create/populate/search the
indexes.

Let me know if there are other questions that you have.

--
Matt Berther
http://www.mattberther.com
Matt, I'm assuming your reference is based on having actually used
Lucene.NET?
Would you talk to me --- us --- more about it? Have you used it to
spider
sites?
<%= Clinton Gallagher
"Matt Berther" <mb******@hotmail.com> wrote in message
news:22***************************@news.microsoft. com...

Hello AGB,

Lucene.NET [1] is a great search engine and can be customized to do
almost anything you need. You will need to populate its index
though.

[1] http://searchblackbox.com/lucene/index.html?ldn2

--
Matt Berther
http://www.mattberther.com
> Hi all,
>
> I know this is a little off topic but I have been tasked with
> implementing a search engine in my website. Does anyone have any
> suggestions...I have looked at Google and Verity.
>
> Thanks
>

Nov 19 '05 #8
Hello Sparky,

This only works if its an internet viable ip address. Given his questions,
Im assuming that this is a LAN web server.

--
Matt Berther
http://www.mattberther.com
Google offers web services. Just get a free API and concatenate your
URL into the search string.

Dim strSearch as string = "inurl:http://Your.Domain/" & tbSearch.text

Nov 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Aardwolf | last post by:
I have recently started to convert several of my websites over to dynamic sites with pages written as requested with php and in some cases using mysql databases to supply data within parts of the...
0
by: R. Rajesh Jeba Anbiah | last post by:
Q: Is PHP search engine friendly? Q: Will search engine spiders crawl my PHP pages? A: Spiders should crawl anything provided they're accessible. Since, nowadays most of the websites are been...
11
by: Petre Huile | last post by:
I have designed a site for a client, but they have hired an internet marketing person to incrase their search engine ranking and traffic. He wants to put extra-large fonts on every page which will...
8
by: Stromboli | last post by:
Hi, I have my site available in a couple of languages most of the files are indexf.html (french), indexi.html (italian) and indexde.html (german).. I'd like to start using multiviews but I've...
2
by: Patrick | last post by:
Are the differences between a search engine, a subject directory and a meta search engine significant for an ebusiness web site owner? A meta search engine merely uses ordinary existing search...
39
by: Noticedtrends | last post by:
Can inference search-engines narrow-down the number of often irrelevant results, by using specific keywords; for the purpose of discerning emerging social & business trends? For example, if...
67
by: Sandy.Pittendrigh | last post by:
Here's a question I don't know the answer to: I have a friend who makes very expensive, hand-made bamboo flyrods. He's widely recognized (in the fishing industry) as one of the 3-5 'best' rod...
64
by: Manfred Kooistra | last post by:
I am building a website with identical content in four different languages. On a first visit, the search engine determines the language of the content by the IP address of the visitor. What the...
16
by: Kent Feiler | last post by:
If I understand the general direction of recent posts, the idea is to improve the quality of html/css by soliciting help from the various browsers. Browsers can certainly detect problems but they...
0
by: passion | last post by:
"Specialized Search Engines" along with Google Search Capability (2 in 1): http://specialized-search-engines.blogspot.com/ Billions of websites are available on the web and plenty of extremely...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.