-
I just noticed this from reading The description simply states:
But how, does it rely on the archive file? Wouldn't this be some overlap in functionality then? What is the point of this option? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
It is implemented by keeping a list of previously seen Tweet IDs in memory and rejecting any Tweet that has an ID already in said list. (1d14928) It is kind of redundant, but you can turn it off if you don't like it / don't want to waste extra memory. |
Beta Was this translation helpful? Give feedback.
extractor.twitter.unique
tries to fix a problem outlined in #2712 (comment), where/with_replies
timelines can return the same Tweet multiple times, which might potentially interfere with-A
, for example.It is implemented by keeping a list of previously seen Tweet IDs in memory and rejecting any Tweet that has an ID already in said list. (1d14928)
It is kind of redundant, but you can turn it off if you don't like it / don't want to waste extra memory.