| Class | RDig::UrlFilters::VisitedUrlFilter |
| In: |
lib/rdig/url_filters.rb
|
| Parent: | Object |
takes care of a list of all Urls visited during a crawl, to avoid indexing pages more than once implemented as a thread safe singleton as it has to be shared between all crawler threads
# File lib/rdig/url_filters.rb, line 69
69: def initialize
70: @visited_urls = Set.new
71: super
72: end