What I'm trying to do here is comparing 2 strings within the sqlite dbs and I want to say I'm a bit stumped. The basic goal of the program is that the user makes a request for a site to be crawled. The crawler then breaks the site down into jobs or links. I'm trying to avoid duplicate crawls and requests by saying
if(request is already in jobs list)
{
do nothing
}
else
{
Anemone.crawl(....)
Anemone is the web spider framework for ruby by the way.
So the comparison in the if statement is as follows.
if(@allRequests.first.url.to_s.eql?@allJobs.first.url.to_s)
puts 'TEST TEST TEST'
puts 'Request is already detected in job list'
@allJobs and @allRequests are both just select * from Jobs.Requests
@allJobs = Job.all
@allRequests = Request.all
The comparison seems to be failing and it will create duplicates no problem. Has anyone any ideas?
On a side note. How does one delete a field from the .all variables.
allJobs.drop "where url = myurl.com" ?