Re: [Twisted-Python] clientfactory cleanup slow-down (after many http requests)

2016-08-11 Thread Manish Tomar
Wow! This is the friendliest way to welcome a new Twisted programmer. Great job Glyph! :) Regards, Manish On Sat, Aug 6, 2016 at 3:51 PM, Glyph Lefkowitz wrote: > > On Aug 6, 2016, at 03:48, Randomcoder wrote: > > Hello, > > I've been working on a small Twisted program. > > > Cool, thanks for

Re: [Twisted-Python] clientfactory cleanup slow-down (after many http requests)

2016-08-06 Thread Glyph Lefkowitz
> On Aug 6, 2016, at 03:48, Randomcoder wrote: > > Hello, > > I've been working on a small Twisted program. Cool, thanks for using Twisted. > The program makes HTTP requests to a large number of feeds. > Twisted is used to speed up the entire process. > After the feeds are fetched, they're pa

[Twisted-Python] clientfactory cleanup slow-down (after many http requests)

2016-08-06 Thread Randomcoder
Hello, I've been working on a small Twisted program. The program makes HTTP requests to a large number of feeds. Twisted is used to speed up the entire process. After the feeds are fetched, they're parsed. Finally they should be written to a database (to simplify the code, that part is left out).