- Add an `always_enqueue` option (or use a better name for it, but avoid negative terms) as an input parameter to the `Request.from_url` constructor. - This will allow users to easily opt out of the request deduplication process. - Implement the option as a convenient wrapper that generates a random `unique_key`, ensuring that each request is always enqueued and processed. - Address edge cases where both `unique_key` and `always_enqueue=True` are provided. - It should work in the same way as the `dont_filter` option in Scrapy ([docs](https://docs.scrapy.org/en/latest/topics/request-response.html)).
always_enqueueoption (or use a better name for it, but avoid negative terms) as an input parameter to theRequest.from_urlconstructor.unique_key, ensuring that each request is always enqueued and processed.unique_keyandalways_enqueue=Trueare provided.dont_filteroption in Scrapy (docs).