Which is better for building a URL queue in large scale web crawler. Linked-list or or B-tree?
|
|
If you're building a large-scale crawler, you almost certainly want to be using something like an AMQP message queue, most probably RabbitMQ. RabbitMQ (and many other similar MQs) will do upwards of 100,000 transactions per second with a pretty normal installation. I use it in my own spider/crawler setup, and it works like a charm. Certainly a whole lot easier than building something similar from scratch. |
||
|
|
|
If the order is important (and queues are), then a linked-list. If you need to search the queue, then B-tree. |
||
|
|
|
If you don't need to search the queue (and queues don't generally need to be searched), then a linked list. |
||||
|
