Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a small search engine in C with curl, libxml2, and mysql. The basic plan is to grab pages with curl, parse them with libxml2, then iterate over the DOM and find all the links. Then traverse each of those, and repeat, all while updating a SQL database that maintains the relationship between URLs.

My question is: how can I best represent the relationship between URLs?.

share|improve this question
1  
Any particular reason you are reinventing search engines? There are many powerful solutions. – mvid Mar 27 '11 at 5:40

4 Answers

up vote 7 down vote accepted

Why not have a table of base urls (ie www.google.com/) and a table of connections, with these example columns:

  • starting page id (from url table)
  • ending page id (from url table)
  • the trailing directory of the urls as strings in two more columns

This will allow you to join on certain urls and pick out information you want.

Your solution seems like it would be better suited to a non relational datastore, such as a column store.

Most search engine indices aren't stored in relational databases, but stored in memory as to minimize retrieval time.

share|improve this answer
I think Memcached is not well suited for your problem. It is not persistent. Maybe something like redis – Felipe Hummel Apr 8 '11 at 4:31

Add two fields to table - 'id' and 'parent_id'.

id - unique identifier for URL parent_id - link between URL's

share|improve this answer

If you want to have a single entry for each URL then you should create another table that maps the relationships.

You then lookup the URL table to see if it exists. If not create it.

The relationship table would have

SourceUrlId,
UrlId

Where the SourceUrlId is the page and the UrlId is the url it points to. That way you can have multiple relationships for the same URL and you won't need to have a new entry in the Url table for every link to that url. Will also mean only 1 copy of any other info you are storing.

share|improve this answer

Why are you interested in representing pages graph?

If you want to compute the ranking, then it's better to have a more succinct and efficient representation (e.g., matricial form if you want to compute something similar to PageRank).

share|improve this answer
not sure yet, maybe it will be cool. – Tom Dignan Mar 27 '11 at 5:55
1  
maybe, but SE should work with huge, huge, huge, huge amounts of data, so succinctness and efficiency should be top priorities. I mean: using SQL (especially mysql) looks like a terrible idea. – akappa Mar 27 '11 at 6:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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