crawlee do not scrap second time
I am scraping same amazon products in fixed interval of time but when i run program, crawlee scrap for the first time but after that it does not make any request

8 Replies
rising-crimsonOP•3y ago

rising-crimsonOP•3y ago
continuing-cyan•3y ago
I guess you are using the same requestQueue for all runs and then all requests are considered already handled so it does not do anything.
rising-crimsonOP•3y ago
is there a way to stop this behaviour
or should i create new crawler for every round
continuing-cyan•3y ago
it is not default behaviour, by default storage is purged automatically. see this https://crawlee.dev/api/core/function/purgeDefaultStorages
rising-crimsonOP•3y ago
I tried this function but still same behaviour
I tried not using requestQueue and still same behavior
rising-crimsonOP•3y ago
i was able to fix by giving unique url everytime

rising-crimsonOP•3y ago
but if its caching url in storage then it will end up storing each and every url which is not good