This is slightly OT... I need to loop through a bunch of email list subscription transactions ( sub vs unsub actions) and generate a finalized opt-in or opt-out list.
Under "normal" python / perl , I'd just use a 'seen' dict/hash and test for presence. In this situation I'm running inside a Pylons controller , so that code wouldn't scale well -- potentially eating memory and affecting the rest of the app. Can anyone offer a suggestion on how to better approach this? I was thinking that a temporary BDB file could trade off disk-io for memory, but then that could create a lot of io. This is super annoying ( trying to figure out a scalable solution ). --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
