vote up 1 vote down star
1

Let's say I want to aggregate information related to a specific niche from many sources (could be travel, tech, or whatever). How would I do that?

Have a spider/crawler who will crawl the web for finding the info I need (how would I tell the crawler what to crawl because I don't want to get the whole web?)? Then have an indexing system to index and organize the info I crawled and be also a search engine?

Are systems like Nutch lucene.apache.org/nutch ok to be used for what I want? Do you recommend something else?

Or recommend another approach?

For example, how Techmeme.com is built? (it's an aggregator of tech news and it's complete automated - only recent they added some human intervention) What it would take to build such a service?

Or how Kayak.com aggregates their data? (it's a travel aggregator service)

Thank you.

flag

3 Answers

vote up 1 vote down

This all depends on the aggregator you are looking for.

Types:

  • Losely defined - Generially this requires for you datasource to be very flexible about determining the type of information gathers (answers the question of is this site/information Travel Related? Humour? Business related? )
  • Specific - This relaxes a requirement in the data storage that all of the data is specificially travel related requires for flights, hotel prices, etc.

Typcially an aggregator is a system of sub programs:

  1. Grabber, this searches and grabs all of the content that is needed to be summarized
  2. Summerization- this is typically done through queries to the db and can be adjusted based on user preferences [through programming logic]
  3. View - this formats the information for what the user would like to see and can respond to feedback on the user's likes or dislikes of the item suggested.
link|flag
vote up 0 vote down

Thats a long list of questions. :-) Having made one such search engine (for FAQs), I would say that there is no one answer. The design will be very specific to the problem statement.

link|flag
Ok, then this is one question :): how Techmeme is built? (of course, nobody knows details except the those developers but at least some ideas...) – Mircea Jun 1 at 16:57
vote up 0 vote down

For a basic look - check out this: http://en.wikipedia.org/wiki/Aggregator

It will give you an overview of aggregators in general.

In terms of how to build your own aggregator if you're looking for something out of the box that can get you content that YOU want - I'd suggest this: http://dailyme.com/

If you're looking for a codebase / architecture to BUILD your own aggregator-service - I'd suggest looking at something straight forward - like: Open Reddit from http://www.reddit.com/

link|flag
Yes, I would want my own aggregator. Reddit is like a Digg site and that means users will submit links and vote on them (Pligg or SocialWebCMS are also software which allows you to built something like Digg). What I want is more like Techmeme (where the news are gathered automatically and the editors can rank or show them on the site, if necessary). – Mircea Jun 1 at 17:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.