ArchiveTeam / seesaw-kit

Making a reusable toolkit for writing seesaw scripts
Other
69 stars 30 forks source link

web: Unbounded list for output causes slowness #75

Closed chfoo closed 9 years ago

chfoo commented 9 years ago

self.collected_data is a list which is appended for every line in the item output. If the item is long running and generates a many lines, it will cause the browser to be very slow.

Consider using a bounded deque instead.