vote up 0 vote down star
1

Do web crawlers use cookies, or discard them?

flag
@perezclark I think you have a good question, but you need to do a lot of rewording of both the question and the title. – Darryl Hein Jul 3 at 8:29
And perhaps drop a few questionmarks...I heard The Riddler was looking for you. Something about how many questionmarks there could be in his town or something. – peirix Jul 3 at 8:32
Maybe better worded as "Do web crawlers use cookies, or discard them?" – Paul Dixon Jul 3 at 8:32
It does read a bit like "how is babby formed" :) – Paul Dixon Jul 3 at 8:33
:) :) :) I would change my question as you guys want... sorry for that. – lekhapoorvi Jul 3 at 8:43

2 Answers

vote up 0 vote down

Crawlers do not react to commands to issue cookies and store them until the next visit to a page.

Crawlers do not execute JavaScript.

Crawlers just read default pages (what gets served with no cookies and JavaScript turned off) and rank them based on what they see.

link|flag
1  
Sorry -1 - there are webcrawlers that use cookies - here's the documentation to how to turn it on for IBM's Omnifind - publib.boulder.ibm.com/infocenter/discover/… – DanSingerman Jul 3 at 9:16
Then that's new for me. Thanks. – User Jul 3 at 9:24
vote up 2 vote down

A crawler is just a piece of software that downloads files over http, and tries to find further URLs to download more files.

It is up to the creator of the crawler to determine whether they wish to use or ignore javascript and cookies.

Most crawlers, I believe, currently will ignore javascript and cookies, but there is no reason why that has to be the case (and you certainly should not rely on it, say for security reasons)

link|flag

Your Answer

Get an OpenID
or

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