Re: creating garbage collectable objects (caching objects)

2009-06-29 Thread Dave Angel
Gabriel Genellina wrote: En Mon, 29 Jun 2009 08:01:20 -0300, Dave Angel escribió: News123 wrote: What I was more concerned is a group of output images depending on TWO or more input images. Depending on the platform (and the images) I might not be able to preload all two (or more images) S

Re: creating garbage collectable objects (caching objects)

2009-06-29 Thread Gabriel Genellina
En Mon, 29 Jun 2009 08:01:20 -0300, Dave Angel escribió: News123 wrote: What I was more concerned is a group of output images depending on TWO or more input images. Depending on the platform (and the images) I might not be able to preload all two (or more images) So, as CPython's garbage c

Re: creating garbage collectable objects (caching objects)

2009-06-29 Thread Dave Angel
News123 wrote: Dave Angel wrote: News123 wrote: Hi. I started playing with PIL. I'm performing operations on multiple images and would like compromise between speed and memory requirement. . . . The question, that I have is whether there is any way to tell python, that certain object

Re: creating garbage collectable objects (caching objects)

2009-06-29 Thread News123
Dave Angel wrote: > News123 wrote: >> Hi. >> >> I started playing with PIL. >> >> I'm performing operations on multiple images and would like compromise >> between speed and memory requirement. >> . . . >> >> The question, that I have is whether there is any way to tell python, >> that certain obje

Re: creating garbage collectable objects (caching objects)

2009-06-28 Thread Dave Angel
News123 wrote: Hi. I started playing with PIL. I'm performing operations on multiple images and would like compromise between speed and memory requirement. The fast approach would load all images upfront and create then multiple result files. The problem is, that I do not have enough memory to

Re: creating garbage collectable objects (caching objects)

2009-06-28 Thread Simon Forman
On Jun 28, 11:03 am, News123 wrote: > Hi. > > I started playing with PIL. > > I'm performing operations on multiple images and would like compromise > between speed and memory requirement. > > The fast approach would load all images upfront and create then multiple > result files. The problem is,

Re: creating garbage collectable objects (caching objects)

2009-06-28 Thread Terry Reedy
News123 wrote: Hi. I started playing with PIL. I'm performing operations on multiple images and would like compromise between speed and memory requirement. The fast approach would load all images upfront and create then multiple result files. The problem is, that I do not have enough memory to

creating garbage collectable objects (caching objects)

2009-06-28 Thread News123
Hi. I started playing with PIL. I'm performing operations on multiple images and would like compromise between speed and memory requirement. The fast approach would load all images upfront and create then multiple result files. The problem is, that I do not have enough memory to load all files.